PHP 类方法级联

发布于 2024-09-07 03:19:36 字数 330 浏览 1 评论 0原文

我见过很多 php 脚本,您可以在其中级联类方法来生成特定的功能,例如在 codeigniter 中,当您加载要键入的视图时

<?php
class Posts extends Controller
    {
        function index() {
            $this->load->view("BlaBla");
        }
    }
?>

我不完全确定这些是级联方法还是什么,但我不知道有足够的经验来破解 codeigniter 核心并弄清楚自己。
谁能告诉我如何做到这一点或指导我一些教程等

I have seen many php scripts in which you can cascade class method to produce a specific functionality for example as in codeigniter when you load a view you would type

<?php
class Posts extends Controller
    {
        function index() {
            $this->load->view("BlaBla");
        }
    }
?>

I am not completely sure if these are cascaded methods or what butI don't have enough experience to hack the codeigniter core and figure out myself.
Can anyone tell me how to do this or guide me to some tutorial or so

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

堇色安年 2024-09-14 03:19:36

每个方法都必须返回其类实例,例如:

class A{
  function B(){
    //do stuff
    return $this;
  }
  function C(){
    //do stuff
    return $this;
  }
  function D(){
    return $this->B()->C()->B()->B()->C();
  }
}

或者您可以构建自己的缓存类来链接任何内容:

class Ch{  
  static private $i; 
    public static function i($arg){
    if  (!self::$i instanceof self){
      self::$i = new self();
    }
    self::$i->data=$arg;
        return self::$i;
    }  
  function __call($name,$args){
    array_unshift($args,$this->data);
    $this->data=call_user_func_array($name,$args);
    return $this;
  }
  function get(){
    return $this->data;
  }
}


echo Ch::i('Hello world')->trim('Hld')->str_repeat(5)->substr(5,7)->strtoupper()->get();

Every method must return its class instance, like:

class A{
  function B(){
    //do stuff
    return $this;
  }
  function C(){
    //do stuff
    return $this;
  }
  function D(){
    return $this->B()->C()->B()->B()->C();
  }
}

or you can build your own cahining class to chain anything:

class Ch{  
  static private $i; 
    public static function i($arg){
    if  (!self::$i instanceof self){
      self::$i = new self();
    }
    self::$i->data=$arg;
        return self::$i;
    }  
  function __call($name,$args){
    array_unshift($args,$this->data);
    $this->data=call_user_func_array($name,$args);
    return $this;
  }
  function get(){
    return $this->data;
  }
}


echo Ch::i('Hello world')->trim('Hld')->str_repeat(5)->substr(5,7)->strtoupper()->get();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文