官术网_书友最值得收藏!

Errors and exceptions

In PHP7, most errors are now reported as error exceptions. Only a few fatal errors halt script execution; otherwise, if you are carrying out error or exception handling, it will not halt the script. This is because now the Errors class implements a Throwable interface just like the Exception class, which also implements Throwable. So now, in most cases, fatal errors can be avoided through exception handling.

Here are some sub-classes of the error class:

  • TypeError
  • ParseError
  • ArithmeticError
    • DivisionByZeroError
  • AssertionError

This is how you can simply catch an error and handle it:

try {
fn();
} catch(Throwable $error){
echo $error->getMessage(); //Call to undefined function fn()
}

Here, $error->getMessage() is a method that is actually returning this message as a string. In our preceding example, the message will be similar to this: Call to undefined function fn().

This is not the only method you can use. Here is a list of methods that are defined in the Throwable interface; you can use them accordingly during error/exception handling. After all, the Exception and Error classes both implement the same Throwable interface:

interface Throwable
{
public function getMessage(): string;
public function getCode(): int;
public function getFile(): string;
public function getLine(): int;
public function getTrace(): array;
public function getTraceAsString(): string;
public function getPrevious(): Throwable;
public function __toString(): string;
}
主站蜘蛛池模板: 夏邑县| 福建省| 滨州市| 诸暨市| 乐亭县| 太仓市| 三河市| 昌黎县| 夹江县| 社旗县| 安达市| 东乌珠穆沁旗| 东明县| 太原市| 大邑县| 乌兰察布市| 汉沽区| 左贡县| 丽水市| 泰州市| 灵石县| 永平县| 齐河县| 三原县| 桦川县| 防城港市| 土默特右旗| 洛浦县| 安阳县| 建宁县| 从江县| 台南县| 岳西县| 海门市| 嘉荫县| 宕昌县| 定兴县| 即墨市| 蒙山县| 赤峰市| 长寿区|