在php中如果你是配置安装一般默认情况下是不支持curl系列函数的,如果你想让你的php环境支持curl函数,我们可参考下面方法来解决。
修改你的php配置,把php.ini中的;extension=php_curl.dll中的分号去掉;
然后重启apache测试看可不可以,一般情况是没问题了,如果还是不行我们可
1、将PHP文件夹下的三个文件
php_curl.dll,
libeay32.dll,
ssleay32.dll
复制到system32下;
3、重启apache。
测试
代码如下 |
复制代码 |
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,”http://www.bKjia.c0m”);
curl_setopt($ch,CURLOPT_HEADER,1);
curl_exec($ch);
curl_close($ch);
?>
|
这样就成功了哦。
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn