mirror of
https://github.com/php/php-src.git
synced 2024-12-18 14:30:35 +08:00
23 lines
481 B
PHP
23 lines
481 B
PHP
--TEST--
|
|
Exception inside a foreach loop with return
|
|
--FILE--
|
|
<?php
|
|
class saboteurTestController {
|
|
public function isConsistent() { throw new \Exception(); }
|
|
}
|
|
|
|
$controllers = array(new saboteurTestController(),new saboteurTestController());
|
|
foreach ($controllers as $controller) {
|
|
try {
|
|
if ($controller->isConsistent()) {
|
|
return $controller;
|
|
}
|
|
} catch (\Exception $e) {
|
|
echo "Exception\n";
|
|
}
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
Exception
|
|
Exception
|