mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
21 lines
266 B
PHP
Executable File
21 lines
266 B
PHP
Executable File
--TEST--
|
|
Bug #29944 (function defined in switch crashes PHP)
|
|
--FILE--
|
|
<?PHP
|
|
$a = 1;
|
|
$b = "1";
|
|
switch ($a) {
|
|
case 1:
|
|
function foo($bar) {
|
|
if (preg_match('/\d/', $bar)) return true;
|
|
return false;
|
|
}
|
|
echo foo($b);
|
|
}
|
|
?>
|
|
|
|
===DONE===
|
|
--EXPECT--
|
|
1
|
|
===DONE===
|