Heim > Artikel > Backend-Entwicklung > Was ist eine PHP-Konfigurationsdatei?
Was sind die PHP-Konfigurationsdateien?
PHP, das mit nginx verwendet wird, verfügt über drei Konfigurationsdateien: php.ini, php-fpm.conf, www.conf .
php.ini ist die Kernkonfiguration der PHP-Laufzeit. Der PHP-Prozess im CLI-Modus und im PHP-FPM-Modus liest alle die Konfigurationselemente in php.ini.
php-fpm.conf ist die Konfigurationsdatei des von php-fpm verwalteten PHP-Prozesses. (Empfohlenes Lernen: PHP-Programmierung vom Anfänger bis zum Experten)
Der in diesem Modus ausgeführte PHP-Prozess liest zusätzlich zum Lesen der Konfigurationselemente in php.ini auch PHP - Konfigurationselemente in fpm.conf.
www.conf ist eine Ergänzung zu php-fpm.conf.
Wichtige Konfiguration in php.ini
######避免PHP信息暴露在http头中 expose_php = Off ######避免暴露php错误信息 display_errors = Off ######在关闭display_errors后开启PHP错误日志(路径在php-fpm.conf中配置) log_errors = On ######设置PHP的扩展库路径 extension_dir = "/usr/local/php7/lib/php/extensions/no-debug-non-zts-20141001/" ######设置PHP的opcache和mysql动态库 zend_extension=opcache.so extension=mysqli.so extension=pdo_mysql.so ######设置PHP的时区 date.timezone = PRC ######开启opcache [opcache] ; Determines if Zend OPCache is enabled opcache.enable=1 ######设置PHP脚本允许访问的目录(需要根据实际情况配置) ;open_basedir = /usr/share/nginx/html;
Wichtige Konfiguration in php-fpm.conf
;php运行日志 error_log=log/php-fpm.log ;FPM使用的事件机制 events.mechanism = epoll ;php-fpm.conf的补充文件www.conf的路径include=/usr/cg/lnmp/php-7.0.13/etc/php-fpm.d/*.conf
Das obige ist der detaillierte Inhalt vonWas ist eine PHP-Konfigurationsdatei?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!