php – 如何在同一行中对类方法进行多个调用?

前端之家收集整理的这篇文章主要介绍了php – 如何在同一行中对类方法进行多个调用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在 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->模板是我需要调用notify()元素的地方.

通过“ – >”逐个调用类的功能的方式因为该函数返回同一个对象的类.见下面的例子.你会得到这个
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;
    }
}

整个魔法是返回$这个;

原文链接:https://www.f2er.com/php/132252.html

猜你在找的PHP相关文章