この記事では主に CentOS のインストール PHP5.6 の例を紹介します。お役に立てれば幸いです。
yum ソースを設定する
CentOS 6.5 epel および remi ソースを追加する
rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpmrpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
CentOS 7.0 ソース
yum install epel-releaserpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
yum list コマンドを使用してインストール可能なパッケージ (パッケージ) を表示する
yum list --enablerepo=remi --enablerepo=remi-php56 | grep php
PHP5.6 をインストールする
rrリー使用PHP コマンドでバージョンを確認します
yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof
ここでインストールされているバージョンは PHP5.6.34 です。注意深いユーザーは、ZendGuardLoader が Zend OPcahe になっていることに気付いたかもしれません。
PHP5.5 以降、PHP コード キャッシュは APC から Zend OPcache に変更されました。
nginx を構成する場合は、php-fpm をインストールする必要もあります
php --version
CentOS 6 システムで PHP-FPM サービスを開始します
yum install --enablerepo=remi --enablerepo=remi-php56 php-fpm
関連する推奨事項:
以上がCentOS に PHP5.6 インスタンスをインストールするの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。