PHP Örnek Exception Throw
Php ile örnek throw komutu ,Exception sınıfını miras alarak istediğimiz hata sınıfı oluşturabilir ve catch blogu içerisinde bu hataları daha detaylı gösterebilir ve özelleştirebiliriz.
<?php
class customException extends Exception{ }
class fruit
{
public function test()
{
if ('a' == 'b') {
throw new customException("error: denk değildir");
} else {
return true;
}
}
}
try {
$a = new fruit();
echo $a->test();
}
catch (customException $e){
print_r($e->getMessage());
}
Örnek Exception Throw PHP
4/
5
Oleh
Root