|
我是学 asp.net 的,所以"引用"这个词可能不适合 php
我自己想扩展helper
所以新建了 MY_cookie_helper.php
现在的问题是:
我增加了一个函数 function fcxxx($p1,$p2){},我需要在里边调用 $this->load->library('xxx1')和另外一个 $this->load->helper('xxx2')中的方法,
怎么写代码比较好看啊,我不想在 fcxxx中把control 中的 $this传过来,难看!( $this代表什么)
我看源码里有 $ci= & get_instance(); 这个什么意思 前边的 & 表示什么?
就算我把 control 中的 $this 传过来,如何保证不会 重复 load 同一个helper
不考虑配置 autoload的情况.. |
|