Edit report at http://bugs.php.net/bug.php?id=52641&edit=1
ID: 52641
User updated by: admin dot windows at gmail dot com
Reported by: admin dot windows at gmail dot com
Summary: scrambled class name passed by call_user_func on non
existing methods
Status: Open
Type: Bug
Package: Class/Object related
-Operating System: ALL
+Operating System: Linux
-PHP Version: 5.2.14
+PHP Version: 5.2.13
Block user comment: N
New Comment:
I don't have 5.2.14 installed on my hosting to confirm that it works on
this
version. However I have uploaded this script on other hosting accounts
that with
5.2.11 and 5.2.13 version installed.
Previous Comments:
------------------------------------------------------------------------
[2010-08-19 04:08:23] [email protected]
Hi, I am using 5.2 SVN.
(PHP 5.2.14RC4-dev (cli) (built: Jul 31 2010 13:23:04) (DEBUG))
------------------------------------------------------------------------
[2010-08-19 04:05:24] admin dot windows at gmail dot com
Hi Felipe, you are probably using version >=5.3. This bug related to
version below
5.3 and it was reproduced on server running 5.2.13
------------------------------------------------------------------------
[2010-08-19 03:56:22] [email protected]
I cannot reproduce this.
I got the message "Warning:
call_user_func(experimental::non_existing_method): First argument is
expected to be a valid callback"
------------------------------------------------------------------------
[2010-08-19 03:27:39] admin dot windows at gmail dot com
Description:
------------
I have discovered weird call_user_func behaviour while calling non
existing method
of the class. Instead of throwing some type of warning it tries to call
non
existing class with scrambled name.
Test script:
---------------
<?php
class experimental{}
function __autoload($class_name)
{
echo sprintf('<pre>%s</pre>',print_r(debug_backtrace(),true));
}
call_user_func(array('experimental','non_existing_method'));
?>
Expected result:
----------------
some king of warning or error
Actual result:
--------------
Array
(
[0] => Array
(
[function] => __autoload
[args] => Array
(
[0] => zybplbn6ps6m
)
)
[1] => Array
(
[file] => /www/test.php
[line] => 13
[function] => call_user_func
[args] => Array
(
[0] => Array
(
[0] => experimental
[1] => non_existing_method
)
)
)
)
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/bug.php?id=52641&edit=1