|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-09-03 15:54 UTC] sniper@php.net
[2002-09-03 16:09 UTC] spam at mattbergin dot co dot uk
[2002-09-08 12:35 UTC] kalowsky@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 00:00:01 2025 UTC |
When I set a configuration directive which has no value defined initially, ini_set returns FALSE, even though the call succeeded. Example: var_dump(ini_get('error_log')); // bool(false) var_dump(ini_set('error_log', '/tmp/foo')); // bool(false) var_dump(ini_get('error_log')); // string(8) "/tmp/foo"