“Error fatal de PHP Catch” Código de respuesta

Excepción de captura de PHP


<?php
function inverse($x) {
    if (!$x) {
       throw new Exception('Division durch Null.');
    }
    return 1/$x;
}

try {
    echo inverse(5) . "\n";
    echo inverse(0) . "\n";
} catch (Exception $e) {
    echo 'Exception abgefangen: ',  $e->getMessage(), "\n";
}

// Ausführung fortsetzen
echo "Hallo Welt\n";
?>

Vadris_

Error fatal de PHP Catch

try {
   do some thing evil
} catch (Error $e) {
   echo 'Now you can catch me!';
}
Prickly Pelican

Respuestas similares a “Error fatal de PHP Catch”

Preguntas similares a “Error fatal de PHP Catch”

Más respuestas relacionadas con “Error fatal de PHP Catch” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código