我想在我自己的網站上獲取一個URL的HTML。 該網站使用laravel 5.4構建。從(自己的網站的)URL獲取HTML內容
我正在嘗試獲取端點的HTML內容,因此我可以將它作爲純文本存儲在數據庫中。
但由於某些原因,我不斷獲得連續加載,即使我在本地主機上運行。
這就是我根據一些問題(Can't seem to get a web page's contents via cURL - user agent and HTTP headers both set?)我在這裏看到的堆棧溢出的嘗試:
$url = url("template/1/11"); // http://localhost:8000/template/1/11
$html = file_get_contents($url);
和
$url = url("template/1/11"); // http://localhost:8000/template/1/11
$c = curl_init($url);
curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
//curl_setopt(... other options you want...)
$html = curl_exec($c);
if (curl_error($c))
die(curl_error($c));
// Get the status code
$status = curl_getinfo($c, CURLINFO_HTTP_CODE);
curl_close($c);
是否有一個原因,我越來越這種行爲? 請幫助我只需要該網址的HTML內容
什麼是PHP錯誤日誌? – mkaatman
@mkaatman php不記錄任何有關它的錯誤 –