首页 > 作文

laravel框架模型中非静态方法也能静态调用的原理分析

更新时间:2023-04-08 05:26:28 阅读: 评论:0

本文实例讲述了laravel框架模型中非静态方法也能静态调用的原理.分电烤箱烤面包享给大家供大家参考,具体如下:

刚开始用laravel模型时,为了方便一直写静态方法,进行数据库操作。

就业报到证
<?phpnamespace app\model顺藤摸瓜是什么意思s;u illuminate\databa\eloquent\model;class ur extends model{  public static function getlist()  {    return lf::get()->toarray();  }}

直到有朋友告诉可以不用这么写,声明一个 protected 方法,方法中用 $this。在外部使用时,也可以像调静态函数一样调用。

<?phpn打篮球作文amespace app\models;u illuminate\databa\eloquent\model;class ur extends model{  protected function getlist()  {    return $this->get()->toarray();  }}

试了一下,发现还真可以,按理说受保护的 protected 非静态方法,在外部是无法这么调用的 ur::getlist() 。

但是在 laravel 中就可以,查看了下 model 基类的代码,原来是因为实现了 __call() 和 __callstatic() 这两个魔术方法。

class model{  public function __cal婴幼儿智力开发l($method, $parameters)  {    if (in_array($method, ['increment', 'decrement'])) {      return $this->$method(...$parameters);    }    return $this->forwardcallto($this->newquery(), $method, $parameters);  }  public static function __callstatic($method, $parameters)  {    return (new static)->$method(...$parameters);  }}

我们试着自已实现下这两个魔术方法,看看效果。

<?phpnamespace app\models;class model{  //在对象中调用一个不可访问方法时,__call()被调用  public function __call($method, $parameters)  {    echo '__call()';    return $this->{$method}(...$parameters);  }  //在静态上下文中调用一个不可访问方法时,__callstatic()被调用  public static function __callstatic($method, $parameters)  {    echo '__callstatic()';    //注意这里,通过延迟静态绑定,仍然new了一个实例    return (new static)->{$method}(...$parameters);  }  private function test()  {    echo '被调用了<br>';  }}

我们尝试调用 test() 方法。

<?phpnamespace app\http\controllers\test;u illuminate\http\request;u app\http\controllers\controller;u app\models\model;class test extends controller{  public function index(request $request)  {    //对象调用    (new model())->test();    //静态方法调用    model::test();  }}

结果显示调用成功。

本文发布于:2023-04-08 05:26:27,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/7a4a2a776a703082020cdea7a14485d6.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:laravel框架模型中非静态方法也能静态调用的原理分析.doc

本文 PDF 下载地址:laravel框架模型中非静态方法也能静态调用的原理分析.pdf

下一篇:返回列表
标签:方法   静态   这两个   中非
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图