From:             fdsoft at pganet dot com
Operating system: Mac OS X 10.3.4
PHP version:      5.0.0
PHP Bug Type:     Feature/Change Request
Bug description:  get_extension_funcs() support for non-lowercase names

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

?>


-- 
Edit bug report at http://bugs.php.net/?id=29169&edit=1
-- 
Try a CVS snapshot (php4):  http://bugs.php.net/fix.php?id=29169&r=trysnapshot4
Try a CVS snapshot (php5):  http://bugs.php.net/fix.php?id=29169&r=trysnapshot5
Fixed in CVS:               http://bugs.php.net/fix.php?id=29169&r=fixedcvs
Fixed in release:           http://bugs.php.net/fix.php?id=29169&r=alreadyfixed
Need backtrace:             http://bugs.php.net/fix.php?id=29169&r=needtrace
Need Reproduce Script:      http://bugs.php.net/fix.php?id=29169&r=needscript
Try newer version:          http://bugs.php.net/fix.php?id=29169&r=oldversion
Not developer issue:        http://bugs.php.net/fix.php?id=29169&r=support
Expected behavior:          http://bugs.php.net/fix.php?id=29169&r=notwrong
Not enough info:            http://bugs.php.net/fix.php?id=29169&r=notenoughinfo
Submitted twice:            http://bugs.php.net/fix.php?id=29169&r=submittedtwice
register_globals:           http://bugs.php.net/fix.php?id=29169&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=29169&r=php3
Daylight Savings:           http://bugs.php.net/fix.php?id=29169&r=dst
IIS Stability:              http://bugs.php.net/fix.php?id=29169&r=isapi
Install GNU Sed:            http://bugs.php.net/fix.php?id=29169&r=gnused
Floating point limitations: http://bugs.php.net/fix.php?id=29169&r=float

Reply via email to