分享:
▼
x0
|
[PHP][討論] 請問一下 ~ php_curl.dll 跟 curl.so 哪裡下載
我有一支程式 不知道未什麼 執行會跳出如下的錯誤訊息
Warning: dl(): Unable to load dynamic library './php_curl.dll' - 找不到指定的模組。 in D:\PHP\PHP\gmail\libgmailer.php on line 80
Warning: dl(): Unable to load dynamic library './curl.so' - 找不到指定的模組。 in D:\PHP\PHP\gmail\libgmailer.php on line 80
Fatal error: Call to undefined function: curl_init() in D:\PHP\PHP\gmail\libgmailer.php on line 167
我只知道
D:\PHP\PHP\gmail\libgmailer.php on line 80
if (!extension_loaded('curl')) { 80: if (!dl('php_curl.dll') && !dl('curl.so')) { Debugger::say("Constructing failed: unable to load curl extension."); $this->created = false; } }
Fatal error: Call to undefined function: curl_init() in D:\PHP\PHP\gmail\libgmailer.php on line 167 curl_setopt($c, CURLOPT_POSTFIELDS, $postdata);
..... 請高手指教......
[ 此文章被ada在2005-07-01 17:02重新編輯 ]
|