|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-08-06 10:30 UTC] johannes@php.net
-Status: Open
+Status: Bogus
[2010-08-06 10:30 UTC] johannes@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 02:00:02 2025 UTC |
Description: ------------ The create_function doesn't work on stdClass Object's like the below source. Test script: --------------- $foo = new stdClass; $foo->bar = create_function('','echo "bar";'); $foo->bar(); // doesn't work Expected result: ---------------- The expected result ist, to get the return value of the attached function.