有没有办法使用类似的东西
ini_get_all()
并将 .ini 文件的实际外观输出到屏幕上。我的意思是这样你就可以复制和粘贴它。这是因为我实际上无法访问主机 .ini,但可以自己制作。但是当我自己制作它时,它会丢失所有当前设置,所以我需要知道它当前是如何设置的。
有没有办法使用类似的东西
ini_get_all()
并将 .ini 文件的实际外观输出到屏幕上。我的意思是这样你就可以复制和粘贴它。这是因为我实际上无法访问主机 .ini,但可以自己制作。但是当我自己制作它时,它会丢失所有当前设置,所以我需要知道它当前是如何设置的。
尝试这个:
echo file_get_contents(php_ini_loaded_file());
您还可以检查您的 php 是否正在加载除主 php.ini 之外的任何其他 .ini 文件。
//This will return you a comma separated list of the additional ini files loaded
$additional_ini_files = php_ini_scanned_files();
// The explode and the str_replace is for removing the new line char from the strings
foreach(explode(",\n",$additional_ini_files) as $ini_file_path){
echo file_get_contents(str_replace("\n","",$ini_file_path));
}