Что такое ключевое слово `finally` для PHP?
Рассмотрим эти два примера <?php function throw_exception() { // Arbitrary code here throw new Exception('Hello, Joe!'); } function some_code() { // Arbitrary code here } try { throw_exception(); } catch (Exception $e) { echo $e->getMessage(); } some_code(); // More arbitrary code ?> а также <?php function throw_exception() { // Arbitrary code here throw new Exception('Hello, […]