我可以通过下面的php中的URL返回吗?
$var = http://www.example.com/give_data.php?id=4;
答案 0 :(得分:2)
您可以使用file_get_contents()
:
$var = file_get_contents('http://www.xyz.com/give_data.php?id=4');
但是,只要将give_data.php脚本输出为字符串,它就会返回。如果您需要更高级的数据类型,我建议在获取数据以获取原始数据后,在give_data.php和$var = json_decode($var);
中使用json_encode()。请注意,这不适用于复杂的PHP对象。如果你真的需要,可以使用serialize()和unserialize(),但它不是标准的,只能在PHP中使用。
答案 1 :(得分:2)
你的问题很混乱,但我想你想要变量中的文件内容? 为此,您可以使用file_get_contents
$var = file_get_contents('http://php.net/manual/en/function.file-get-contents.php');