php7.0.5のインストール方法: まず「php-7.0.5.tar.gz」をダウンロードし、次に「yum install epel-release」コマンドで拡張パッケージを更新し、次にコンパイルコマンドを実行し、最後に設定ファイルを変更するだけです。
おすすめ: 「PHP ビデオチュートリアル 」
PHP7.0 の正式版もリリースされました今日は、これをコンパイルしてインストールし、インストール手順を書き留めました centos6.6 環境で以下のようにコンパイルしました:
yum install epel-release //扩展包更新包 yum update //更新yum源
を実行してから、次のコマンド
yum install -y gcc gcc-c++ make zlib zlib-devel pcre pcre-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel krb5 krb5-devel openssl openssl-devel openldap openldap-devel nss_ldap openldap-clients openldap-servers libmcrypt libmcrypt-devel libXpm-devel
make & make install
./configure --prefix=/usr/local/php --enable-fpm --with-mcrypt=/usr/local/libmcrypt --with-zlib --enable-mbstring --enable-pcntl --with-openssl --enable-soap --with-pear --with-png-dir --with-pcre-regex --enable-mysqlnd \ --with-mysqli=mysqlnd \ --with-pdo-mysql=mysqlnd \ --with-mysql-sock=/var/lib/mysql/mysql.sock --with-gd --with-jpeg-dir=/usr/lib --enable-gd-native-ttf --with-gettext --with-curl --enable-sockets --enable-bcmath --enable-xml --with-bz2 --enable-zip --with-freetype-dir=/usr/include/freetype2/
注意事項上記のコマンドは
--with-mysqli パラメーターは、mysql が配置されている bin ファイル パスを指定します (例: /usr/bin/mysql_config
##)
# --with-freetype-dir 指定されたパス
これは /usr/include/freetype2/ です。yum で freetype2 をインストールした場合、
#その他は実際のニーズに基づいています。
# cp php.ini-development /usr/local/php/lib/php.ini # cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf# cp /usr/local/php/etc/php-fpm.d/www.conf.default /usr/local/php/etc/php-fpm.d/www.conf # cp -R ./sapi/fpm/php-fpm /etc/init.d/php-fpm
#Start
りー
以上がphp7.0.5のインストールチュートリアルの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。