|
以windows下的php+apache為例。
首先,打開(kāi)php.ini,找到“extension=php_curl.dll”,然后去掉前面的“;”注釋?zhuān)貑pache即可。
如果還出現(xiàn)此類(lèi)問(wèn)題,先檢查php.ini的extension_dir值是哪個(gè)目錄,在那個(gè)目錄下檢查有無(wú)php_curl.dll,沒(méi)有的話(huà)請(qǐng)下載php_curl.dll,再把php目錄中的libeay32.dll和ssleay32.dll拷到c:/windows/system32里面,重啟apache,OK!
在Ubuntu 下運(yùn)行php,總是提示Call to undefined function curl_init(),原因沒(méi)有安轉(zhuǎn):php5-curl
與curl相關(guān)的內(nèi)容見(jiàn):http://packages.ubuntu.com/zh-cn/intrepid/php5-curl
CURL is a library for getting files from FTP, GOPHER, HTTP server.
php5 is an HTML-embedded scripting language. Much of its syntax is borrowed from C, Java and Perl with a couple of unique php-specific features thrown in. The goal of the language is to allow web developers to write dinamically generated pages quickly. This version of php5 was built with the Suhosin patch.
H1>
(php 4 >= 4.0.2)
curl_init -- 初始化一個(gè)CURL會(huì)話(huà)
描述
int curl_init ([string url])
curl_init()函數(shù)將初始化一個(gè)新的會(huì)話(huà),返回一個(gè)CURL句柄供curl_setopt(), curl_exec(),和 curl_close() 函數(shù)使用。如果可選參數(shù)被提供,那么CURLOPT_URL選項(xiàng)將被設(shè)置成這個(gè)參數(shù)的值。你可以使用curl_setopt()函數(shù)人工設(shè)置。
例 1. 初始化一個(gè)新的CURL會(huì)話(huà),且取回一個(gè)網(wǎng)頁(yè)
<?php
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, "http://www.zend.com/");
curl_setopt ($ch, CURLOPT_HEADER, 0);
curl_exec ($ch);
curl_close ($ch);
?>
參見(jiàn):curl_close(), curl_setopt()
php技術(shù):php運(yùn)行出現(xiàn)Call to undefined function curl_init()的解決方法,轉(zhuǎn)載需保留來(lái)源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。