Zephir异常处理异常处理 #异常处理机制 Zephir可以处理低级的异常,提供跟PHP类似的函数式异常处理方法。 当一个异常被抛出时,需要使用一个catch语句来捕获错误并允许用户自由处理错误。
try {
// exceptions can be thrown here
throw new \Exception("This is an exception");
} catch \Exception, e {
// handle exception
echo e->getMessage();
}
Zephir允许用户只使用try来简化错误抛出机制
try {
throw new \Exception("This is an exception");
}
如果你不编写任何异常抛出变量,可以这样直接使用:
try {
// exceptions can be thrown here
throw new \Exception("This is an exception");
} catch \Exception {
//不需要定义e直接使用就行,
// handle exception
echo e->getMessage();
}
一个catch语句可以捕获多个不同类型的异常
try {
// exceptions can be thrown here
throw new \Exception("This is an exception");
} catch RuntimeException|Exception, e {
// handle exception
echo e->getMessage();
}
Zephir允许直接抛出静态类型或字符串的异常,其内容会被当做异常的提示信息。
throw "Test"; // throw new \Exception("Test");
throw 't'; // throw new \Exception((string) 't');
throw 123; // throw new \Exception((string) 123);
throw 123.123; // throw new \Exception((string) 123.123);
Zephir的异常提供了跟PHP一样的异常错误提示。通过Exception::getFile()和Exception::getLine()可以获得异常文件和文件位置。
Exception: The static method 'someMethod' doesn't exist on model 'Robots'
File=phalcon/mvc/model.zep Line=4042
#0 /home/scott/test.php(64): Phalcon\Mvc\Model::__callStatic('someMethod', Array)
#1 /home/scott/test.php(64): Robots::someMethod()
#2 {main}
来源:oschina
链接:https://my.oschina.net/u/1045414/blog/631408