我想在像这样的网站上获取请求
$id = "something";
$response = http_get("http://example.com?id=$id, array("timeout"=>1), $out);
我无法确定如何使用http_get
我尝试过使用file_get_contents,它就像
一样$out = file_get_contents("http://www.example.com?id=something");
但我希望它像那样
$out = file_get_contents("http://www.example.com?id=$id");
这个不起作用
答案 0 :(得分:0)
我开始工作的方式是使用下面的代码。
$out = file_get_contents("http://www.example.com?id=".$id);
这会将$ id变量内容连接到要请求的url的末尾。