|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-07-15 11:42 UTC] derick@php.net
[2004-07-15 13:12 UTC] nlopess@php.net
[2020-02-07 06:11 UTC] phpdocbot@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 03 22:00:01 2025 UTC |
Description: ------------ get_extension_funcs() only seems to work for all lowercase module names, while get_loaded_extensions() now returns some capitalized names. Examples are SPL, SQLite, SimpleXML. Back in 5.0.0RC1, all there of these were returned by get_loaded_extensions() in lowercase, as "spl" "sqlite" and "simplexml". This has changed since then. Reproduce code: --------------- <?php var_dump(get_extension_funcs("SQLite")); // displays: bool (false); var_dump(get_extension_funcs("sqlite")); // displays: the expected list of functions ?>