tp5中模型操作get或者find方法有什么区别
答案:1 悬赏:30 手机版
解决时间 2021-03-24 04:25
- 提问者网友:嗝是迷路的屁
- 2021-03-23 09:34
tp5中模型操作get或者find方法有什么区别
最佳答案
- 五星知识达人网友:洎扰庸人
- 2021-03-23 10:08
get是Model类里的,find是Query类里的,其实可以看看Model里get的实现,最终都是调用的是find
public static function get($data = null, $with = [], $cache = false)
{
$query = static::parseQuery($data, $with, $cache);
return $query->find($data);
}
public static function get($data = null, $with = [], $cache = false)
{
$query = static::parseQuery($data, $with, $cache);
return $query->find($data);
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯