--TEST-- Test ReflectionFunction::getClosure() function : basic functionality --FILE-- getClosure(); $closure(); $func = new ReflectionFunction( 'bar' ); $closure = $func->getClosure(); $closure( 'succeeded' ); ?> --EXPECT-- *** Testing ReflectionFunction::getClosure() : basic functionality *** string(19) "Inside foo function" string(16) "Arg is succeeded"