|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2009-03-04 12:16 UTC] jan dot ptacek at gmail dot com
Description:
------------
ini_set is not returning FALSE upon failure
Reproduce code:
---------------
ini_set('include_path', APP_DIR . DS . PATH_SEPARATOR . ini_get('include_path'));
Expected result:
----------------
updated include_path or FALSE return value
Actual result:
--------------
old include_path is returned but new one is not set,
because include_path was configured using php_admin_value
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 08 19:00:02 2025 UTC |
I can't reproduce this with 5.2.9 var_dump(ini_set('include_path', '/fooo/bar')); results in a return of bool (false)