问题描述(static::model)::count($conditions); // 请问这种写法有什么弊端吗相关代码trait SRV { public static function count(array $conditions) { if (empty(static::model)) { return 0;
} return (static::model)::count($conditions);
}
}class CommentSrv { // DB静态类
const model = CommentDB::class; use SRV;
}上面的代码在实际应用中可以正常使用,但是这种写法,我没有搜索到,不知道会不会产生什么后遗症..导致后期维护成本提高
添加回答
举报
0/150
提交
取消