1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 17:52:16 +01:00
Files
archived-php-src/Zend/tests/closure_025.phpt
2017-02-03 18:52:57 +01:00

14 lines
278 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));
?>
--EXPECTF--
Deprecated: Function create_function() is deprecated in %s on line %d
int(8)