Try Throw Catch Kulanımı PHP

 Try Throw Catch Kulanımı 


<?php
try{
$a = 0;

if($a == 0){
throw new Exception("Hata fırlat ve işleme devam etme");
}
echo $a;

}
catch(exeption $msg){
echo $msg->getMessage();
}
?>

Related Posts

Try Throw Catch Kulanımı PHP
4/ 5
Oleh