Tagged Questions
3
votes
6answers
2k views
PHP's create_function() versus just using eval()
In PHP you have the create_function() function which creates a unique named lambda function like this:
$myFunction = create_function('$foo', 'return $foo;');
$myFunction('bar'); //Returns bar
Is ...