|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-04-07 19:21 UTC] cmb@php.net
-Status: Open
+Status: Wont fix
[2015-04-07 19:21 UTC] cmb@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Dec 12 17:00:01 2025 UTC |
Description: ------------ There is `set_ini()` that can be used to change value of a given configuration option and for CGI or Fast-CGI users .user.ini file can be used to override the desired configuration options. but there is nothing when you use PHP as a server module. Please add a `set_ini_file($path_to_user_ini);` function. Expected result: ---------------- Here is a bare minimum example code in PHP: function ini_set_file($ini_file) { foreach(parse_ini_file($ini_file) as $option => $newvalue){ ini_set($option, $newvalue); } }