mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
17 lines
265 B
PHP
Executable File
17 lines
265 B
PHP
Executable File
--TEST--
|
|
Bug #38623 (leaks in a tricky code with switch() and exceptions)
|
|
--FILE--
|
|
<?php
|
|
try {
|
|
switch(strtolower("apache")) {
|
|
case "apache":
|
|
throw new Exception("test");
|
|
break;
|
|
}
|
|
} catch (Exception $e) {
|
|
echo "ok\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
ok
|