Mailinglisten-Archive |
Hallo, > Aber wie bekomme ich heraus, ob dieser Wert in > irgend einem includierten Teil-Script veraendert > wurde ? > Man kann aendern soviel man will, get_cfg_var(); > bleibt bei dem alten Wert aus der PHP.ini. > Man kann es also nicht fuer die Erfolgskontrolle > einer Aenderung einsetzen ... :-(( > Kennt jemand eine Alternative ... ? http://de.php.net/manual/en/function.get-cfg-var.php verdana at php dot net 05-Dec-2002 04:16 ini_get() return the current value of the configuration option. But the get_cfg_var() always get the value from config file, php.ini. This is the test code: ini_set('sendmail_from', 'verdana at 263.net'); echo '<br /> <br />'; echo '<br /> Current Value:'; var_dump(ini_get('sendmail_from')); echo '<br /> Value in cfg file:'; var_dump(get_cfg_var('sendmail_from')); funzt das nicht? mfg Michel Zobel Software Entwicklung / Softwaredevelopement health network
php::bar PHP Wiki - Listenarchive