1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/Zend/tests/closure_025.phpt
Felipe Pena de758769d3 - New tests
2008-07-28 14:09:00 +00:00

13 lines
207 B
PHP

--TEST--
Closure 025: Using closure in create_function()
--FILE--
<?php
$a = create_function('$x', 'return function($y) use ($x) { return $x * $y; };');
var_dump($a(2)->__invoke(4));
?>
--EXPECT--
int(8)