我有 WAMP,我正在运行 PHP 5.3.13 和 Apache 2.2.22。
我通过勾选 php_curl 启用了扩展。我已经重新启动了我的电脑。
我的代码说:
Fatal error: Call to undefined function curl_init()
有人认为可能出了什么问题吗?
我的 phpinfo 没有说任何关于 curl 的内容,但在 phpini 中它说:
;扩展=php_bz2.dll
扩展=php_curl.dll 。
调用它的代码在这里:
class ***** {
public static $oauth, $debug, $logger, $session_manager, $last_response;
protected static $url, $client_id, $client_secret, $secret, $ch, $headers;
const GET = 'GET';
const POST = 'POST';
const PUT = 'PUT';
const DELETE = 'DELETE';
public static function setup($client_id, $client_secret, $options = array('session_manager' => '*****Session')) {
// Setup client info
self::$client_id = $client_id;
self::$client_secret = $client_secret;
// Setup curl
self::$url = empty($options['api_url']) ? 'https://api.*****.com:443' : $options['api_url'];
self::$debug = false;
self::$ch = curl_init();
此代码来自可信赖的 API。我为不需要分享的单词加了星标。