centos7x php7.3x 패키지 설치
# Script/PHP2022. 5. 31. 00:01centos7x php7.3x 패키지 설치

[darksharavim.tistory.com] yum -y install epel-release yum-utils [darksharavim.tistory.com] yum -y install http://rpms.remirepo.net/enterprise/remi-release-7.rpm [darksharavim.tistory.com] yum-config-manager --enable remi-php73 [darksharavim.tistory.com] yum install php php-common php-opcache php-mcrypt php-cli php-gd php-curl php-mysqlnd [darksharavim.tistory.com] php -v PHP 7.3.33 (cli) (built..

php-7x zend 설정
# Script/PHP2021. 7. 26. 10:37php-7x zend 설정

php7버전부터는 zend opcache모듈이 기본적으로 설치되어 있어 php.ini에 설정만 해주면됨. php.ini에 추가 [opcache] zend_extension=opcache.so opcache.enable_cli=1 opcache.memory_consumption=128 opcache.interned_strings_buffer=8 opcache.max_accelerated_files=4000 opcache.validate_timestamps=1 opcache.revalidate_freq=60 opcache.fast_shutdown=1 확인 $ ./php -v PHP 7.0.19 (cli) (built: Jul 23 2021 13:38:38) ( NTS ) Copyright (c) 1997-2..

centos7 php7x 컴파일 설치
# Script/PHP2019. 1. 6. 16:13centos7 php7x 컴파일 설치

# wget http://php.net/distributions/php-7.3.0.tar.gz # ./configure --prefix=/usr/local/php73 \ --with-apxs2 \ --with-config-file-path=/usr/local/php73/etc \ --enable-fpm \ --enable-sigchild \ --with-libxml-dir \ --with-openssl \ --with-zlib \ --with-mysqli \ --with-zlib-dir \ --with-bz2 \ --enable-calendar \ --with-curl \ --enable-dba \ --with-gdbm \ --enable-exif \ --enable-ftp \ --with-gd \ --..

image