mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
29 lines
627 B
PHP
29 lines
627 B
PHP
--TEST--
|
|
Test ReflectionFunction::getClosure() function : basic functionality
|
|
--FILE--
|
|
<?php
|
|
echo "*** Testing ReflectionFunction::getClosure() : basic functionality ***\n";
|
|
|
|
function foo()
|
|
{
|
|
var_dump( "Inside foo function" );
|
|
}
|
|
|
|
function bar( $arg )
|
|
{
|
|
var_dump( "Arg is " . $arg );
|
|
}
|
|
|
|
$func = new ReflectionFunction( 'foo' );
|
|
$closure = $func->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"
|