|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2021-08-18 13:48 UTC] cmb@php.net
[2021-08-18 13:48 UTC] cmb@php.net
-Summary: ini_get_all('core') returns all ini settings
+Summary: ini_get_all('core') should only return core ini
settings
-Type: Bug
+Type: Feature/Change Request
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 23:00:01 2025 UTC |
Description: ------------ ini_get_all('core') returns ini settings of all extensions, not only of the Core extension. IMHO this should only happen when you call ini_get_all(). Test script: --------------- <?php var_dump(ini_get_all('core')); ?>