0
我想從外部頁面鏈接源獲取標題,說明。當我嘗試獲取Facebook頁面源並正在返回某個其他頁面的源代碼時,這不起作用。它工作在其他網站像谷歌等。這裏是我的PHP代碼:從外部頁面鏈接獲取「標題」和「描述」
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
public function previewLink(){
$url = "https://www.facebook.com/NASA/";
$html = $this->file_get_contents_curl($url);
$title = "";
$description ="";
$image = "";
//parsing begins here:
$doc = new \DOMDocument();
@$doc->loadHTML($html);
$nodes = $doc->getElementsByTagName('title');
$title = $nodes->item(0)->nodeValue();
}
我沒有得到什麼,我所面臨的問題。有人能提出一些建議嗎提前致謝。
謝謝。它正在工作。 – Ishan