Codeigniter的Nusphere PhpEd代码洞察

时间:2013-12-14 19:42:58

标签: php codeigniter insight

我想知道是否有办法使用@var@property在Codeigniter中为get_instance()在Nusphere PhpEd中定义代码洞察。

一个例子是:

// Define @property for Codeigniter object?
class Example
{
    // Define @var for Codeigniter object?
    var $ci;

    public function __construct()
    {
        $this->ci =& get_instance();
    }

    public function test($var)
    {
        $this->ci-> //I want to load Codeigniter insight here
    }
}

如果我扩展CI_Controller类(class Example extends CI_Controller),那么我可以使用$this->来获取Codeigniter对象...但我不想扩展CI_Controller类(不想继承父母的任何东西)

任何帮助将不胜感激!提前谢谢!

1 个答案:

答案 0 :(得分:0)

您在寻找什么;

https://gist.github.com/topdown/1697338

干杯