Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/
Upload File :
Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/closure_025.phpt

--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)