如何在ubuntu 16.04中安装php-curl

前端之家收集整理的这篇文章主要介绍了如何在ubuntu 16.04中安装php-curl前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

I’ve Updgrage ubuntu 16.04 and facing problems after installing PHP5.

安装了以下PHP-5:

sudo add-apt-repository ppa:ondrej/PHP
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install PHP5.5   # for PHP 5.5

尝试安装PHP-curl但它不工作.

sudo apt-get install PHP5-curl

输出:E:无法找到包PHP5-curl

在Ubuntu 16.04中,默认的PHP版本为7.0,如果要使用diffrent版本,那么我们需要根据PHP版本安装PHP包:

> PHP 7:sudo apt-get install PHP-curl> PHP 5.6:sudo apt-get install PHP5.6-curl> PHP 5.5:sudo apt-get install PHP5.5-curl

原文链接:https://www.f2er.com/ubuntu/347293.html

猜你在找的Ubuntu相关文章