#author("2018-01-26T11:50:36+09:00","","") #author("2018-01-26T11:53:02+09:00","","") #norelated #contents ---- **インストール [#h4d0b5dd] # yum -y install php #ref(./yum-php.txt); #ref(./yum-php.txt) **バージョン確認 [#zfecd491] # php -v &br;PHP 5.4.16 (cli) (built: Nov 15 2017 16:33:54) &br;Copyright (c) 1997-2013 The PHP Group &br;Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies **モジュール [#n7f4ce4e] 必要に応じて以下も入れるとよいかも。 -マルチバイト文字モジュール # yum -y install php-mbstring -MySQLモジュール # yum -y install php-mysql -PostgreSQLモジュール # yum -y install php-pgsql -PHP開発用(ソースのコンパイルとかするなら) # yum -y install php-devel **EPEL・Remiリポジトリにてバージョンアップ((詳しくは[[EPEL・Remiリポジトリ]]を参照)) [#q3f2d5bc] ***EPELリポジトリのインストール [#x776d52c] # yum -y install epel-release ***Remiリポジトリのインストール [#uaca17f3] # rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm ***PHP7.1のインストール [#f7a22691] # yum -y install --enablerepo=remi,remi-php71 php php-devel php-mbstring php-pdo php-gd php-xml php-mcrypt --skip-broken #ref(./yum-php71.txt); #ref(./yum-php71.txt) # php -v &br;PHP 7.1.13 (cli) (built: Jan 3 2018 11:00:58) ( NTS ) &br;Copyright (c) 1997-2017 The PHP Group &br;Zend Engine v3.1.0, Copyright (c) 1998-2017 Zend Technologies