|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-08-28 01:12 UTC] sniper@php.net
[2005-08-28 18:27 UTC] php dot net at sharpdreams dot com
[2016-12-30 23:01 UTC] cmb@php.net
-Package: Feature/Change Request
+Package: Filesystem function related
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 10:00:01 2025 UTC |
Description: ------------ On the documentaiton page of php.ini, it states: " Since PHP 5.1.0, it is possible to refer to existing .ini variables from within .ini files. Example: open_basedir = ${open_basedir} ":/new/dir"." This does not seem to work in 5.1 for parse_ini_file. Also, it appears there is no way to reference sections, e.g., baz = ${section.foo} That would be nice. Very nice, in fact (regardless of syntax required). Reproduce code: --------------- --- file.ini --- [Test] foo = bar baz = ${foo} --- test.php --- <?php $ini = parse_ini_file( "file.ini", true ); var_dump( $ini ); ?> Expected result: ---------------- array(1) { ["Test"]=> array(2) { ["foo"]=> string(3) "bar" ["baz"]=> string(3) "bar" } } Actual result: -------------- array(1) { ["Test"]=> array(2) { ["foo"]=> string(3) "bar" ["baz"]=> string(0) "" } }