“PHP lanzable” Código de respuesta

PHP lanzable

try {
// Code that may throw an Exception or Error.
} catch (Throwable $t) {
// Executed only in PHP 7, will not match in PHP 5.x
} catch (Exception $e) {
// Executed only in PHP 5.x, will not be reached in PHP 7
}
Lucky Llama

PHP Thorwable vs Exception


Throwable does not work on PHP 5.x.

To catch both exceptions and errors in PHP 5.x and 7, add a catch block for Exception AFTER catching Throwable first.
Once PHP 5.x support is no longer needed, the block catching Exception can be removed.

try
{
   // Code that may throw an Exception or Error.
}
catch (Throwable $t)
{
   // Executed only in PHP 7, will not match in PHP 5
}
catch (Exception $e)
{
   // Executed only in PHP 5, will not be reached in PHP 7
}
0xC0DE:CAFE

Respuestas similares a “PHP lanzable”

Preguntas similares a “PHP lanzable”

Más respuestas relacionadas con “PHP lanzable” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código