PHPのオブジェクト指向の問題? ? ?
クラス ファクトリ{
プライベート $tmp=array();
関数 __construct(){}
パブリック関数 t(){
array_push($this->tmp,3);
}
public function gett(){
return $this->tmp;
}
}
$a=new Factory();
print_r($a ->gett());
nullを出力する方法、3を出力したい、取得方法
-----解決策--------- -- ----------
...関数 t(){}
$tmp=array() は実行されていません。空の配列です
$a=new Factory();
$a -> ;t();
print_r($a->gett());
または
function __construct(){
array_push($this->tmp,3 );
}