我正在尝试根据manual手册在我的服务器上安装pecl_http用于ubuntu,但是apt-cache search pecl_http
返回php5-pecl-http
作为pecl http packadge:
sudo apt-get update
sudo apt-get install php-pear php5-dev
sudo apt-get install php5-pecl-http
sudo apt-get install libcurl3-openssl-dev
php.ini
末尾的添加了extension=http.so
。
我需要http_get()
和func http_parse_headers()
表示func未定义。有什么问题?
答案 0 :(得分:7)
这可能为时已晚,但对于其他人来说,这里解释了一个解决方案:http://www.mkfoster.com/2009/01/04/how-to-install-a-php-pecl-extensionmodule-on-ubuntu/
sudo apt-get update
sudo apt-get install php-pear php5-dev
sudo apt-get install libcurl3-openssl-dev
然后,
sudo pecl install pecl_http