The latest major release of PHP version 7.0 have been released with lots of speed optimizations and security. So, should try this version for your development. This tutorial is to the Install PHP 7.0, Apache >= 2.4.17, & MySQL 5.6 on Ubuntu 15.10, 15.04 & 14.04 LT S release.
650) this.width=650; "src=" Http://tecadmin.net/wp-content/uploads/2015/12/php7-apache2-mysql.png "alt=" Install PHP 7.0, Apache 2.4 MySQL "class=" AlignCenter size-full wp-image-9385 "height=" "Width="/>
Install PHP 7
First install Python-software-properties package on your system which provides add-apt-repository command then use the fol lowing set of commands to add PPA for PHP 7 in your Ubuntu system and install it.
$ sudo apt-get install python-software-properties$ sudo add-apt-repository ppa:ondrej/php$ sudo apt-get update$ sudo apt-g ET install-y php7.0
Install Apache 2.4
After successfully installation, lets begin installing Apache 2.4. Use the following set of commands to install APACHE2 on your Ubuntu system available in default apt repositories.
$ sudo add-apt-repository ppa:ondrej/apache2$ sudo apt-get update$ sudo apt-get install apache2
Install MySQL 5.6
Use the following commands to install or upgrade MySQL 5.6 on your Ubuntu systems. At the last update of this tutorial MySQL 5.6.27 was latest available MySQL version in series of MySQL 5.6.X.
$ sudo add-apt-repository-y ppa:ondrej/mysql-5.6$ sudo apt-get update$ sudo apt-get install mysql-server-5.6
Install other Requirements
Also need to the install modules like Php7-mysql, libapache2-mod-php7.0 etc based on your application requirements. Use the following command to find our available PHP 7 modules.
$ sudo apt-cache search php7-*
Above command would list all available PHP7 modules for installation, let's begin installation of modules.
$ sudo apt-get install libapache2-mod-php7.0 php7.0-mysql php7.0-curl php7.0-json php7.0-cli Php7.0-common php7.0-mysql php7.0-fpm
Verify Setup
Finally Verify installation of PHP7 with Apache2. Let's create a file info.php on website document root using following content.
<?phpphpinfo ();? >
Now browse the this file in Web browser. It's all, the details about version ' s and installation.
650) this.width=650; "src=" Http://tecadmin.net/wp-content/uploads/2015/12/php7-info.png "alt=" Php7-info "class=" AlignCenter size-full wp-image-9384 "height=" 430 "width=" 650 "/>
This article is from the "Mr_computer" blog, make sure to keep this source http://caochun.blog.51cto.com/4497308/1759480
Ubuntu--lamp (Linux-3.13.0-32-generic, apache-2.4.18,mysql-5.6.27,php-7.0.5) (ii)