mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
3b8cb2119b
Fixed bug #72216 (Return by reference with finally is not memory safe) Fixed bug #72215 (Wrong return value if var modified in finally)
17 lines
221 B
PHP
17 lines
221 B
PHP
--TEST--
|
|
Bug #72215 (Wrong return value if var modified in finally)
|
|
--FILE--
|
|
<?php
|
|
function test() {
|
|
$a = 1;
|
|
try {
|
|
return $a;
|
|
} finally {
|
|
$a = 2;
|
|
}
|
|
}
|
|
var_dump(test());
|
|
?>
|
|
--EXPECT--
|
|
int(1)
|