从函数 abc();
1. 如何调用“A 类中的函数 a”?($this->a(); 返回错误)?
2. 如何访问公共变量$bbb?
(-我知道结构不好,但 'require_once' 部分是动态的等等......)
class AAA extends CI_Controller
{
public $bbb;
function ccc ()
{
}
function index ()
{
require_once '1.php';
}
}
// 在 1.php 中
function abc ()
{
// how do i call method a of Class A?
$this->ccc(); // returns error - Using $this when not in object context in ...
$this->bbb; //
}
abc(); // etc etc