当前位置:Gxlcms > PHP教程 > 在thinksns里这个where方法在哪个文件里?

在thinksns里这个where方法在哪个文件里?

时间:2021-07-01 10:21:17 帮助过:5人阅读

return $this->where($map)->field($field)->order($order)->findPage($limit);

在thinksns里 没有找到where field order 和 findpage方法

public function __set($name,$value) {
return $this->set($name,$value);
}

这个函数表示什么意思呢 我知道 __set 但是set 就不明白了

请大家帮帮忙


回复讨论(解决方案)

那你就找到并贴出 set 方法的代码
估计就是向某个数组赋值,最终用这个数组构造 sql 指令

嗯,不对!
你找 __set 是不对的!
应该找 __call,如果没有 __call,则必然有那些方法

不用纠结,直接拿来用就好。

谢谢大家的帮忙,已经找到了在addons/libs/cache/cachefile.class.php 里 有写这个function set() 函数

人气教程排行