CakeFest 2025 Madrid: The Official CakePHP Conference

Voting

: max(one, nine)?
(Example: nine)

The Note You're Voting On

Alan FUNG
16 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.

<< Back to user notes page

To Top