Home > Backend Development > PHP Tutorial > 在thinksns里这个where方法在哪个文件里?

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

WBOY
Release: 2016-06-23 14:06:32
Original
1012 people have browsed it

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() 函数

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template