php提示:Call to undefined function curl_init_PHP教程

來源:互聯網
上載者:User
我要利用curl函數進行資料擷取時發現提示Call to undefined function curl_init錯誤了,後來從官網瞭解到因為curl預設不是php開啟的函數,我們需要手工開啟哦,下面我來給大家介紹開啟curl函數。

代碼如下 複製代碼

$ch = curl_init(); //初始化curl
curl_setopt($ch, CURLOPT_URL, $url);//設定連結
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//設定是否返回資訊
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);//設定HTTP頭
curl_setopt($ch, CURLOPT_POST, 1);//設定為POST方式
curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_data);//POST資料
$response = curl_exec($ch);//接收返回資訊
if(curl_errno($ch)){//出錯則顯示錯誤資訊
print curl_error($ch);
}
curl_close($ch); //關閉curl連結
echo $response;//顯示返回資訊

結果出現

Call to undefined function curl_init

解決方案如下:

1.開啟php.ini,開啟extension=php_curl.dll

2.檢查php.ini的extension_dir值是哪個目錄,檢查有無php_curl.dll,沒有的請下載php_curl.dll,再把php目錄中的libeay32.dll,ssleay32.dll拷到c:windowssystem32裡面

修改之後還有問題啊

在httpd.conf檔案中加上:

LoadFile 動態連結程式庫的完整路徑

比如,此處php需要擴充curl,因此解決方案就是在httpd.conf檔案中加上:

LoadFile d:/php/libeay32.dll
LoadFile d:/php/ssleay32.dll

這樣就解決了

http://www.bkjia.com/PHPjc/632116.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/632116.htmlTechArticle我要利用curl函數進行資料擷取時發現提示Call to undefined function curl_init錯誤了,後來從官網瞭解到因為curl預設不是php開啟的函數,我們需要手...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.