mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
16 lines
245 B
PHP
16 lines
245 B
PHP
--TEST--
|
|
Using throw $var with anonymous function return
|
|
--FILE--
|
|
<?php
|
|
|
|
try {
|
|
$a = create_function('', 'return new Exception("test");');
|
|
throw $a();
|
|
} catch (Exception $e) {
|
|
var_dump($e->getMessage() == 'test');
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|