hell0w0rd
Продвинутый новичок
Равносильны ли это конструкции?
PHP:
try {
throw new Exception();
} catch (Exception $e) {
try {
throw new Exception('', 0, $e);
} catch (Exception $e) {
throw new Exception('', 0, $e);
}
}
PHP:
try {
throw new Exception();
} catch (Exception $e) {
throw new Exception('', 0, $e);
} catch (Exception $e) {
throw new Exception('', 0, $e);
}