0
如何從數組中獲取ID以從URL中獲取和放入內容。需要從網址獲取數據並將其保存在文件夾中。我在PHP新嘗試這樣的事情,但是這對我不起作用:從數組中獲取ID file_get_contents
$array = array("10", "11", "12");
$contents = file_get_contents('http://www.example.cpm/id='.$array.'&type=text');
file_put_contents('folder/'.$array.'.html', $contents);