ajax
私は2つの機能が存在するコントローラーを持っています:
function customer_comission()
{
---------------------------
---------------------------
$arr = $this->show_parent_id( $child_node );
var_dump($arr);
----------------------------
---------------
}
function show_parent_id( $cust_id ){
if( $cust_id > 2 ):
$cust_id2 = $this->comission_model->show_parent_id( $cust_id );
$cust_array[] = $cust_id2;
//echo $this->show_parent_id( $cust_id2 );
$this->show_parent_id( $cust_id2 );
endif;
return $cust_array; // <-- This is Line 38
}
表示したいparent_id
のは、$cust_id
階層の の配列です。は目的のecho $this->show_parent_id( $cust_id2 );
結果を出力しますが、それらを配列に追加しようとすると、エラーが表示されます:
PHP エラーが発生しました
重大度: 通知
メッセージ: 未定義の変数: cust_array
ファイル名: controllers/ajax.php
ライン番号: 38