関数 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