將file_get_contents 替換為CURL 進行外部連結顯示
要實現CURL,請按照以下步驟操作:<code class="php">function file_get_contents_curl($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_URL, $url); $data = curl_exec($ch); curl_close($ch); return $data; }</code>要實現CURL,請按照以下步驟操作:
<code class="php">echo file_get_contents_curl('http://google.com');</code>透過啟用這些選項,CURL 可以有效地存取外部連結並檢索其內容。例如,以下程式碼會擷取 Google.com 的內容:使用這些修改,即使不支援 file_get_contents,您也可以利用 CURL 在您的網站上取得和顯示外部連結。
以上是如何使用CURL實現外部連結顯示?的詳細內容。更多資訊請關注PHP中文網其他相關文章!