將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>
<code class="php">echo file_get_contents_curl('http://google.com');</code>
以上是如何使用CURL實現外部連結顯示?的詳細內容。更多資訊請關注PHP中文網其他相關文章!