1

我有这段代码,它允许我从链接中检索信息......现在,它说无法打开流......这是代码:

谢谢!

$b = time ();
$date1 =date( "Y-m-d;h:i:s" , mktime(date("h")+6, date("i"), date("s"), date("m") , date("d"), date("Y")));
$str_time = "";
$str_msg = "";
$str_from = "";
$str_zip = "";

echo file_get_contents('href="http://testext.i-movo.com/api/receivesms.aspx?".$str_from."".$str_zip."".$phone."".$str_time."".$date1."".$str_msg.""');
}
4

2 回答 2

2

这:

echo file_get_contents('href="http://testext.i-movo.com/api/receivesms.aspx?".$str_from."".$str_zip."".$phone."".$str_time."".$date1."".$str_msg.""');

应该是这样的:

echo file_get_contents("http://testext.i-movo.com/api/receivesms.aspx?".$str_from.$str_zip.$phone.$str_time.$date1.$str_msg);
于 2012-09-11T22:45:11.363 回答
0

请阅读file_get_contents的文档

例子说

$homepage = file_get_contents('http://www.example.com/');
echo $homepage;

您正在使用

$homepage = file_get_contents('href="http://www.example.com/');

现在出了什么问题..

于 2012-09-11T22:44:23.220 回答