Home
last modified time | relevance | path

Searched refs:closure (Results 1 – 25 of 71) sorted by relevance

123

/PHP-5.5/Zend/
H A Dzend_closures.c84 zend_closure *closure; in ZEND_METHOD() local
172 return &closure->func; in zend_get_closure_method_def()
259 if (closure->this_ptr) { in zend_closure_free_storage()
263 efree(closure); in zend_closure_free_storage()
269 zend_closure *closure; in zend_closure_new() local
289 …zend_create_closure(&result, &closure->func, closure->func.common.scope, closure->this_ptr TSRMLS_… in zend_closure_clone()
296 zend_closure *closure; in zend_closure_get_closure() local
305 if (closure->this_ptr) { in zend_closure_get_closure()
382 *table = closure->this_ptr ? &closure->this_ptr : NULL; in zend_closure_get_gc()
444 zend_closure *closure; in zend_create_closure() local
[all …]
/PHP-5.5/ext/reflection/tests/
H A Dclosures_004.phpt2 Reflection on closures: Segfault with getClosure() on closure itself
5 $closure = function() { echo "Invoked!\n"; };
7 $method = new ReflectionFunction ($closure);
14 unset ($closure);
19 $closure = function() { echo "Invoked!\n"; };
21 $method = new ReflectionMethod ($closure, '__invoke');
22 $closure2 = $method->getClosure ($closure);
27 unset ($closure);
H A Dclosures_001.phpt6 $closure = function($a, $b = 0) { };
8 $ro = new ReflectionObject($closure);
22 $rm = new ReflectionMethod($closure, '__invoke');
29 $rp = new ReflectionParameter(array($closure, '__invoke'), 0);
31 $rp = new ReflectionParameter(array($closure, '__invoke'), 1);
33 $rp = new ReflectionParameter(array($closure, '__invoke'), 'a');
35 $rp = new ReflectionParameter(array($closure, '__invoke'), 'b');
40 $rp = new ReflectionParameter($closure, 0);
42 $rp = new ReflectionParameter($closure, 1);
44 $rp = new ReflectionParameter($closure, 'a');
[all …]
H A DReflectionFunction_getClosureScopeClass.phpt11 $closure = function($param) { return "this is a closure"; };
12 $rf = new ReflectionFunction($closure);
17 return function($param) { return "this is a closure"; };
21 $closure = A::getClosure();
22 $rf = new ReflectionFunction($closure);
H A Dclosures_003_v1.phpt6 $closure = function($a, $b = 0) { };
8 $method = new ReflectionFunction ($closure);
15 $parameter = new ReflectionParameter ($closure, 'b');
23 {closure}
24 {closure}
H A Dbug52057.phpt6 $closure = function($a) { echo $a; };
8 $reflection = new ReflectionClass('closure');
11 $reflection = new ReflectionClass($closure);
14 $reflection = new ReflectionObject($closure);
17 $reflection = new ReflectionClass('closure');
21 $reflection = new ReflectionClass($closure);
25 $reflection = new ReflectionObject($closure);
H A DReflectionMethod_getClosure_basic.phpt6 * Description: Returns a dynamically created closure for the method
38 $closure = $method->getClosure();
39 $closure();
43 $closure = $method->getClosure( $object );
44 $closure();
46 $closure();
H A DReflectionFunction_getClosure_basic.phpt6 * Description: Returns a dynamically created closure for the function
24 $closure = $func->getClosure();
25 $closure();
28 $closure = $func->getClosure();
29 $closure( 'succeeded' );
H A DReflectionFunction_getClosureThis.phpt11 $closure = function($param) { return "this is a closure"; };
12 $rf = new ReflectionFunction($closure);
H A DReflectionMethod_getClosureThis.phpt34 $closure = $method->getClosure();
35 $rf = new ReflectionFunction($closure);
41 $closure = $method->getClosure( $object );
42 $rf = new ReflectionFunction($closure);
H A Dbug67068.phpt2 Bug #67068 (ReflectionFunction::getClosure returns something that doesn't report as a closure)
11 $closure = $reflector->getClosure($object);
13 $closureReflector = new \ReflectionFunction($closure);
H A DReflectionFunction_isClosure_basic.phpt14 $closure = function($param) { return "this is a closure"; };
15 $rc = new ReflectionFunction($closure);
H A Dclosures_003.phpt6 $closure = function($a, $b = 0) { };
8 $method = new ReflectionMethod ($closure, '__invoke');
15 $parameter = new ReflectionParameter (array ($closure, '__invoke'), 'b');
/PHP-5.5/Zend/tests/
H A Dbug54358.phpt12 $closure = function() use ($asserter, &$function) {
16 $closure();
20 $closure = function() use ($asserter, $function) {
24 $closure();
28 $closure = function() use ($asserter, $function) {
32 $closure();
H A Dbug62991.phpt2 Bug #62991 (Segfault with generator and closure)
8 $closure = function() use ( $array ) {
12 return $closure();
17 $closure = function() use ( $array ) {
21 return $closure; // if you return the $closure and call it outside this function it works.
H A Dclosure_032.phpt6 function test(closure $a) {
23 [function] => {closure}
32 #0 {closure}(23) called at [%s:%d]
39 [function] => {closure}
68 #0 {closure}(23) called at [%s:%d]
H A Dclosure_037.phpt33 $closure = $a->getClosure();
34 $closure();
36 $closure = $b->getClosure();
37 $closure();
H A Dbug52060.phpt2 Bug #52060 (Memory leak when passing a closure to method_exists())
6 $closure = function($a) { echo $a; };
8 var_dump(method_exists($closure, '__invoke')); // true
H A Dclosure_029.phpt6 var_dump(function() { } instanceof closure);
7 var_dump(function(&$x) { } instanceof closure);
8 var_dump(@function(&$x) use ($y, $z) { } instanceof closure);
H A D037.phpt6 namespace closure;
8 class closure { static $x = 1;}
11 var_dump(closure::$x);
H A Dclosure_006.phpt12 $closure = $getClosure (2);
13 $closure ();
H A Dclosure_007.phpt26 $closure = $getClosure();
28 $closure();
/PHP-5.5/ext/spl/tests/
H A Dspl_autoload_014.phpt5 $closure = function($class) {
6 echo "closure called with class $class\n";
29 spl_autoload_register($closure);
35 spl_autoload_unregister($closure);
43 closure called with class TestX
/PHP-5.5/ext/standard/tests/general_functions/
H A Dbug66094.phpt6 register_tick_function($closure = function () { echo "Tick!\n"; });
7 unregister_tick_function($closure);
/PHP-5.5/ext/curl/tests/
H A Dcurl_basic_006.phpt2 Test curl_opt() function with CURLOPT_WRITEFUNCTION parameter set to a closure
20 echo '*** Testing curl_setopt($ch, CURLOPT_WRITEFUNCTION, <closure>); ***' . "\n";
39 *** Testing curl_setopt($ch, CURLOPT_WRITEFUNCTION, <closure>); ***

Completed in 43 milliseconds

123