ID:               51104
 Comment by:       mick1986 at hotmail dot com
 Reported By:      gern_ at hotmail dot com
 Status:           Open
 Bug Type:         Scripting Engine problem
 Operating System: Windows 7 Pro 64bit
 PHP Version:      5.3.1
 New Comment:

I'm having similar issue on the same OS & PHP version.

$lambda = function() { print 'Hello World'; };
$lambda();
$array['test'] = 2; // this trigger a Fatal Error


Previous Comments:
------------------------------------------------------------------------

[2010-02-21 07:23:35] gern_ at hotmail dot com

Description:
------------
When calling error_reporting() before any lambda function will cause a

Fatal Error.

Putting error_reporting() in a separate file "fix" this bug.

Reproduce code:
---------------
error_reporting(E_ALL); // uncomment this line to work

$lambda = function() { print 'Hello World'; };
$lambda();

// calling error_reporting(E_ALL) at this point will not cause Fatal
Error

Expected result:
----------------
Hello World

Actual result:
--------------
Fatal error: Function name must be a string in D:\www\lambda.php on
line 
6


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=51104&edit=1

Reply via email to