https://webtatic.com/packages/php56/
PHP 5.6.5 has been released on PHP.net on 22nd January 2014, and is also available for CentOS/RHEL 6.5 at Webtatic via Yum.
PHP 5.6 adds new features such as:
To see what else has been added, check out the What has changed in PHP 5.6.x.
To install, first you must add the Webtatic EL yum repository information corresponding to your CentOS/RHEL version to yum:
CentOS/RHEL 7.x:
rpm -Uvh https://mirror.webtatic.com/yum/el7/epel-release.rpm rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm |
CentOS/RHEL 6.x:
rpm -Uvh https://mirror.webtatic.com/yum/el6/latest.rpm |
Now you can install PHP 5.6 (along with an opcode cache) by doing:
yum install php56w php56w-opcache |
If you would like to upgrade php to this version it is recommended that you first check that your system will support the upgrade, e.g. making sure any CPanel-like software can run after the upgrade.
Unless you know what you are doing, it is risky upgrading an existing system. It’s much safer to do this by provisioning a separate server to perform the upgrade as a fresh install instead.
If you know what you are doing, you can upgrade PHP by:
yum install yum-plugin-replace yum replace --enablerepo=webtatic-testing php-common --replace-with=php56w-common |
It will likely give you a message “WARNING: Unable to resolve all providers …”. This is normal, and you can continue by tying “y“. You will be given a chance to see what packages will be installed and removed before again being given a chance to confirm.
Package | Provides |
---|---|
php55w | mod_php, php55w-zts |
php55w-bcmath | |
php55w-cli | php-cgi, php-pcntl, php-readline |
php56w-common | php-api, php-bz2, php-calendar, php-ctype, php-curl, php-date, php-ereg, php-exif, php-fileinfo, php-filter, php-ftp, php-gettext, php-gmp, php-hash, php-iconv, php-json, php-libxml, php-openssl, php-pcre, php-pecl-Fileinfo, php-pecl-phar, php-pecl-zip, php-reflection, php-session, php-shmop, php-simplexml, php-sockets, php-spl, php-tokenizer, php-zend-abi, php-zip, php-zlib |
php56w-dba | |
php56w-devel | |
php56w-embedded | php-embedded-devel |
php56w-enchant | |
php56w-fpm | |
php56w-gd | |
php56w-imap | |
php56w-interbase | php_database, php-firebird |
php56w-intl | |
php56w-ldap | |
php56w-mbstring | |
php56w-mcrypt | |
php56w-mssql | |
php56w-mysql | php-mysqli, php_database |
php56w-mysqlnd | php-mysqli, php_database |
php56w-odbc | php-pdo_odbc, php_database |
php56w-opcache | php55w-pecl-zendopcache |
php56w-pdo | |
php56w-pear | |
php56w-pecl-apcu | |
php56w-pecl-gearman | |
php56w-pecl-geoip | |
php56w-pecl-imagick | |
php56w-pecl-memcache | |
php56w-pecl-xdebug | |
php56w-pgsql | php-pdo_pgsql, php_database |
php56w-phpdbg | |
php56w-process | php-posix, php-sysvmsg, php-sysvsem, php-sysvshm |
php56w-pspell | |
php56w-recode | |
php56w-snmp | |
php56w-soap | |
php56w-tidy | |
php56w-xml | php-dom, php-domxml, php-wddx, php-xsl |
php56w-xmlrpc |
The PHP distribution now comes with an opcode cache. This is the Zend Optimizer+ opcode cache, now known as the Zend OPcache extension. This extension is optional, so does not preclude you from using an alternate one.
Due to it being included in the PHP source distribution, it will be well maintained and more suitable for use while other Opcode cache’s are being updated over the coming months.
yum install php56w-opcache |
As mentioned in the PHP 5.4 guide:
You may get a lot more errors coming out of your error logs if by default your error_reporting is set to E_ALL now without explicitly turning off E_STRICT. The default php.ini that comes with the PHP package turns this off by default, but if you are upgrading from an existing installation, your php.ini may not be updated, meaning this will likely be turned on.