tp5的异常处理
来源:6-4 实现自定义全局异常处理 上
the_blessed
2019-12-06
namespace app\index\controller;
use think\Exception;
class Index
{
public function index()
{
try
{
// 1/0;
throw new Exception(“godblessme!”);
}
catch (Exception $e)
{
// throw $e;
return json(‘999999’);
}
}
public function test(){
throw new Exception(“kdkdkdk”);
}
}
上面两个操作都可以运行,请问下触发TP中excetpion类中render方法的条件是什么啊
php里面的Exception类和TP里面的Exception类是什么关系啊?
写回答
1回答
-
7七月
2019-12-09
条件就是抛出异常 ,全局监听。TP的Exception是继承的PHP的Excption
00
相似问题