我有一个文件夹,对于该文件夹中的所有PHP文件(甚至更好,在该文件夹或其中的任何文件夹中)我想对PHP设置进行一些更改.我可以将PHP.ini文件放在该文件夹中,并提供我想要更改的设置吗?
如果是这样,为什么这对我不起作用?这是我自己的服务器.
谢谢!
看起来你想要使用自
PHP 5.3起可用的
per-directory php.ini files.如果它是您自己的服务器,我想您很高兴能够跟上最新的稳定版本(目前为5.3.2).返回ini文件,引用该手册页:
原文链接:https://www.f2er.com/php/138409.htmlSince PHP 5.3.0,PHP includes support for .htaccess-style INI files on a per-directory basis. These files are processed only by the CGI/FastCGI SAPI. This functionality obsoletes the PECL htscanner extension. If you are using Apache,use .htaccess files for the same effect.
In addition to the main PHP.ini file,PHP scans for INI files in each directory,starting with the directory of the requested PHP file,and working its way up to the current document root (as set in $_SERVER[‘DOCUMENT_ROOT’]). Only INI settings with the modes PHP_INI_PERDIR and PHP_INI_USER will be recognized in .user.ini-style INI files.