如何将PHP变量放在file_get_contents URL字符串中?

时间:2014-05-06 23:46:33

标签: php json variables file-get-contents

我想更改下面网址中的1并传递从网站网址中提取的PHP变量。除了我在下面的URL file_get_contents中间找到一个变量时,我还有其他的工作。

$listingstring = file_get_contents('http://example.com/1/lsitngs/');

$listingstring = file_get_contents('http://example.com/?variable/lsitngs/');

1 个答案:

答案 0 :(得分:7)

对字符串使用双引号,这样您就可以在其中放置一个变量并对其进行插值:

$listingstring = file_get_contents("http://example.com/$variable/lsitngs/");

您也可以使用连接:

$listingstring = file_get_contents('http://example.com/'.$variable.'/lsitngs/');