failexception-j9九游

failexception设置查询数据为空时是否需要抛出异常,如果不传入任何参数,默认为开启,用于selectfind方法,例如:

// 数据不存在的话直接抛出异常
db::name('blog')
	->where(['status' => 1])
    ->failexception()
    ->select();
// 数据不存在返回空数组 不抛异常
db::name('blog')
	->where(['status' => 1])
    ->failexception(false)
    ->select();

或者可以使用更方便的查空报错

// 查询多条
db::name('blog')
	->where(['status' => 1])
    ->selectorfail();
// 查询单条
db::name('blog')
	->where(['status' => 1])
    ->findorfail();
文档最后更新时间:2018-04-26 09:48:28
网站地图