php – 测试函数是否从静态上下文运行

前端之家收集整理的这篇文章主要介绍了php – 测试函数是否从静态上下文运行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在编写一个 PHP类,并且包含了一些静态函数,可以快速访问,因为它们很常用,功能也很简单.但是,他们确实使用其中的对象进行数据库访问.我可能会在整个代码中使用静态和非静态上下文中的这些静态方法,因此我希望能够测试是从静态或非静态上下文调用函数,以便我可以避免创建重复的对象如果从非静态上下文调用函数(此实例对象和要静态使用的函数中的实例对象).有没有什么方法可以在函数中测试它,以便我可以使用实例对象,如果从非静态上下文调用函数,并创建它自己的对象,如果从静态上下文调用函数

代码示例:

class MyClass {
  private $db;

  function __constuct(){
    $this->db = new DBConnect();
  }

  public static function myFunction(){
    if(/* Is static */){
      $db = new DBConnect();
    } else {
      $db =& $this->db;
    }
    // Do processing with $db,etc.
  }
}

When a method is declared as static,
not only is the magic variable $this
unavailable (returns NULL),but it is
impossible to tell if the function was
actually called from a static context.
A backtrace implies that for a static
method,calling $object->method() is
internally translated to
className::method() at run time.

http://php.net/manual/en/language.oop5.static.php

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

猜你在找的PHP相关文章