The Note You're Voting On
Alan FUNG ¶ 17 years ago
$f = create_function('','echo "function defined by create_function";');
$f();
result:
function defined by create_function
You may define no return in function body while you are using create_function.