1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 01:32:22 +01:00
Files
archived-php-src/tests/lang/bug24926.phpt
2017-02-03 18:52:57 +01:00

30 lines
557 B
PHP

--TEST--
Bug #24926 (lambda function (create_function()) cannot be stored in a class property)
--FILE--
<?php
error_reporting (E_ALL);
class foo {
public $functions = array();
function __construct()
{
$function = create_function('', 'return "FOO\n";');
print($function());
$this->functions['test'] = $function;
print($this->functions['test']()); // werkt al niet meer
}
}
$a = new foo ();
?>
--EXPECTF--
Deprecated: Function create_function() is deprecated in %s on line %d
FOO
FOO