“Tangkap PHP Pengecualian” Kode Jawaban

PHP Catch Exception


<?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_

Tangkap PHP Pengecualian

try {
  // call a success/error/progress handler
} catch (\Throwable $e) { // For PHP 7
  // handle $e
} catch (\Exception $e) { // For PHP 5
  // handle $e
}
portapipe

Jawaban yang mirip dengan “Tangkap PHP Pengecualian”

Pertanyaan yang mirip dengan “Tangkap PHP Pengecualian”

Lebih banyak jawaban terkait untuk “Tangkap PHP Pengecualian” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya