0

そのようなウェブサイトでリクエストを取得したい

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

これは機能していません

4

1 に答える 1

0

私がそれを機能させる方法は、以下のコードを使用することでした。

$out = file_get_contents("http://www.example.com?id=".$id);

これにより、$id 変数の内容が URL の末尾に連結されてリクエストされます。

于 2017-04-19T11:15:44.713 に答える