Fedora

如何啟用對 php 5.3.3 的 curl 支持?

  • December 2, 2010

嗨,我已經安裝了 curl 和 curl-devel,但我仍然無法讓 curl 與 php 一起使用。我的 php 配置行:

'./configure' '--with-apxs2=/usr/local/apache2/bin/apxs' '--with-gd' '--with-mysql' '--with-zlib' '--enable-mbstring ' '--with-pdo-mysql' '--prefix=/php-5.3.3' '--with-config-file-path=/php-5.3.3' '--with-mysqli=/usr/ bin/mysql_config'

安裝的 curl 包:

curl.i386 7.16.4-1.fc7 已安裝
curl-devel.i386 7.16.4-1.fc7 已安裝

安裝 curl #yum curl 後,它應該為 php 自動啟用它,但 curl 在 php 中仍然不可用。

提前致謝。

您需要將 –with-curl 添加到 php 的配置中

或者試試這個,因為你已經編譯了,如果你還有原始碼..不確定

cd php-5.3.3/ext/curl
phpize
./configure
make
make install

然後在 php.ini 中啟用擴展。它將是 .so 文件而不是 .dll

引用自:https://serverfault.com/questions/208360