如何在php5中安装curl?


202

我目前在10.04 Lucid中将PHP 5.3与Apache一起安装。如何添加PHP Curl库?是否需要为curl安装其他任何依赖项?


我想知道为什么在想要自定义版本时没有答案显示如何编译扩展。
Daniel W.

Answers:


295

我相信php5-curl软件包应该可以解决问题。请使用您选择的包裹管理器,并应妥善保管部门。

sudo apt-get install php5-curl

之后,您将需要重新启动服务器:

sudo service apache2 restart

另外,如果您使用的是php-fpm,则需要重新启动php5-fpm

sudo service php5-fpm restart

1
完全可以在这里提问,但是下次一定要搜索“软件中心”以节省您一些时间;)
Olivier Lalonde

这是在我通过CLI管理的服务器上,什么是软件中心?
达伦·牛顿

4
@DarrenNewton CLI等效项可能会apt-cache search顺便说一句。
Nanne 2012年

1
@ xav0989,看来这是上游的一个错误,因为在Debian上它仅重新加载apache的配置。它应该重新启动apache。
d -_- b

2
在Ubuntu 16.04上$ sudo apt-get install php5.6-curl
Francisco Luz

10

对于php5.6子版本,请使用以下命令(已针对Ubuntu 14.04进行了测试):

sudo apt-get install software-properties-common
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install php5.6
php — version
sudo apt-get install php5.6-curl

那将适用于16.04及更高版本?
muru

仅在Ubuntu 14.04
Mona Jalal

有PPA吗?Ubuntu仓库中没有这样的软件包:packages.ubuntu.com/search?
suite = all&keywords = php5.6

编辑了我的答案
蒙娜·贾拉勒

7

我的conf:Ubuntu 11.10,已经在终端安装php5-curl之前安装了mysql,php5和apache2,我这样做了:

编辑源列表,例如:

sudo -H gedit /etc/apt/sources.list

您可以在http://repogen.simplylinux.ch/中检查您的配置

下一条命令:

apt-get install aptitude

下一条命令:

aptitude install php5-curl

您得到的是这样的:

The following NEW packages will be installed:
php5-curl{b} 
0 packages upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 27.1 kB of archives. After unpacking 127 kB will be used.
The following packages have unmet dependencies:
php5-curl: Depends: php5-common (= 5.3.6-13ubuntu3.1) but 5.3.6-13ubuntu3.8 is installed.
The following actions will resolve these dependencies:

Keep the following packages at their current version:
1)     php5-curl [Not Installed]                          

Accept this solution? [Y/n/q/?] n

您的答案是

接下来的行打印出来:

The following actions will resolve these dependencies:

Downgrade the following packages:                                             
1)     libapache2-mod-php5 [5.3.6-13ubuntu3.8 (now) -> 5.3.6-13ubuntu3.1 (oneiric)]
2)     php5 [5.3.6-13ubuntu3.8 (now) -> 5.3.6-13ubuntu3.1 (oneiric)]               
3)     php5-cli [5.3.6-13ubuntu3.8 (now) -> 5.3.6-13ubuntu3.1 (oneiric)]           
4)     php5-common [5.3.6-13ubuntu3.8 (now) -> 5.3.6-13ubuntu3.1 (oneiric)]        
5)     php5-gd [5.3.6-13ubuntu3.8 (now) -> 5.3.6-13ubuntu3.1 (oneiric)]            
6)     php5-mysql [5.3.6-13ubuntu3.8 (now) -> 5.3.6-13ubuntu3.1 (oneiric)]         

Accept this solution? [Y/n/q/?] y

您的答案是y。

在浏览器中打开phpinfo(),检查属性:

extension_dir   /usr/lib/php5/20090626+lfs

在该文件夹中,您现在应该具有curl.so

编辑php.ini

nano /etc/php5/apache2/php.ini

在下面找到“动态扩展”添加代码:

extension=curl.so

重新启动apache2并检查phpinfo()之后,必须启用curl


5

安装LAMP和cURL扩展的完整解决方案:

sudo apt-get update
sudo apt-get install php5

sudo apt-get install libapache2-mod-php5

sudo apt-get install curl libcurl3 libcurl3-dev php5-curl

接着:

cd /etc/php5/apache2/

sudo nano php.ini

添加以下命令: extension=curl.so

过去的事情restart阿帕奇



2

运行以下命令

sudo apt-get install curl libcurl3 libcurl3-dev php5-mcrypt php5-curl

1
php5-mcrypt有什么呢?
Starx '16

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.