php7.0.5 설치 방법: 먼저 "php-7.0.5.tar.gz"를 다운로드한 다음 "yum install epel-release" 명령을 통해 확장 패키지를 업데이트하고 마지막으로 구성 파일을 수정합니다. .
추천: "PHP Video Tutorial"
PHP7.0 정식 버전도 나왔습니다. 오늘 컴파일해서 설치하고 설치 단계를 아래와 같이 작성했습니다.
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
다른 것들은 실제 필요에 따라 추가하거나 삭제할 수 있습니다
php7의 www.conf 구성 파일은 phpfpm의 포트 번호와 기타 정보를 구성한다는 점에 유의하세요. 기본 9000 포트 번호를 수정하는 경우 여기에서 변경한 다음 nginx 구성을 변경해야 합니다
start
# 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
위 내용은 php7.0.5 설치 튜토리얼의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!