PHP - 文件获取内容无法从URL打开流

时间:2012-09-11 22:41:34

标签: php

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

谢谢!

$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.""');
}

2 个答案:

答案 0 :(得分: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);

答案 1 :(得分:0)

请阅读file_get_contents

的文档

示例说明

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

您正在使用

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

现在出了什么问题..