php-src/Zend/tests/closure_025.phpt

14 lines
278 B
Plaintext
Raw Normal View History

2008-07-28 14:09:00 +00:00
--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));
?>
2017-01-30 21:09:32 +00:00
--EXPECTF--
Deprecated: Function create_function() is deprecated in %s on line %d
2008-07-28 14:09:00 +00:00
int(8)