次のphpエラーがあります:
PHPエラーが発生しました
重大度:通知
メッセージ:未定義の変数:t
と
PHPエラーが発生しました
重大度:警告
メッセージ:myclass :: __construct()の引数1がありません。1011行のxxxで呼び出され、定義されています。
私のコントローラーには以下が含まれています:
$this->load->model('mymodel');
$i = $this->mymodel->func(1);
print_r($i);
mymodel:
$test = new myclass("foo", "bar");
$myarray[] = $test;
return $myarray
私のクラス :
class myclass {
var $a;
var $b;
public function __construct($t, $l) // ERROR 2
{
$this->a = $t; // ERROR 1
$this->b = $l;
}
}
コントローラのprint_r($ a)は、コンテンツを含む正しいオブジェクトを出力することに注意してください。
ありがとう