<html> <body> <div> <?php $my_anon = create_function( '$a, $b', 'return $a+$b;' ); print $my_anon( 3, 9 ); ?> </div> </body> </html>