我想更改下面网址中的1并传递从网站网址中提取的PHP变量。除了我在下面的URL file_get_contents中间找到一个变量时,我还有其他的工作。
$listingstring = file_get_contents('http://example.com/1/lsitngs/');
$listingstring = file_get_contents('http://example.com/?variable/lsitngs/');
答案 0 :(得分:7)
对字符串使用双引号,这样您就可以在其中放置一个变量并对其进行插值:
$listingstring = file_get_contents("http://example.com/$variable/lsitngs/");
您也可以使用连接:
$listingstring = file_get_contents('http://example.com/'.$variable.'/lsitngs/');