そのようなウェブサイトでリクエストを取得したい
$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");
これは機能していません