13

我在 PHP 中有一个问题。在我的 php 文件中,我创建了以下行:

$foo = $wke->template->notify()
                     ->type("ERROR")
                     ->errno("0x14")
                     ->msg("You are not logged.")
                     ->page("login.tpl");

最后,我需要我的$foo变量将返回:

$foo->type = "ERROR" 
$foo->errno= "0x14" 
$foo->msg= "You are not logged." 
$foo->page= "login.tpl"

请注意,这$wke->template是我需要调用notify()元素的地方。

4

2 回答 2

33

因为函数返回的是同一个类的对象,所以只用“->”一一调用类的函数的方式。请参见下面的示例。你会得到这个

class Wke {

    public $type;
    public $errno;
    public $msg;
    public $page;

    public $template = $this;

    public function notify(){
        return $this;
    }

    public function errorno($error){
        $this->errno = $error;
        return $this; // returning same object so you can call the another function in sequence by just ->
    }
    public function type($type){
        $this->type = $type;
        return $this;
    }
    public function msg($msg){
        $this->msg = $msg;
        return $this;
    }
    public function page($page){
        $this->page = $page;
        return $this;
    }
}

整个魔法是return $this;

于 2012-07-19T04:02:36.890 回答
1

这些方法中的每一个都需要返回一些对象,该对象将您设置为参数的内容存储在其中。据推测,它将是template包含每个对象属性的 ,当您调用该方法时,它会设置相应的变量并返回自身。

于 2012-07-19T02:38:26.560 回答