ここに私のクラスです:私の関数の引数1がありません
<?php
class eshop_log extends baseDB {
function insert($tel,$eshop_id,$log) {
$this->insert();
}
}
?>
そして、ここで私はそれを使用した方法は次のとおりです。
$tel= $_POST['telephone'] ;
$id= $_POST['id'] ;
$log="log";
$e_l= new eshop_log();
$e_l->insert($tel,$id,$log);
は、なぜ私は、引数1が欠落して取得していますeshop_log :: eshop_log()??あなたが任意の引数を渡すことなく、再びこのinsert()
メソッドを呼び出す
function insert($tel,$eshop_id,$log)
インサイド
おかげトン
はあなたが親挿入機能にアクセスしたい場合は、 '親::挿入を()'を使用します。今あなたは無限ループを作っています。 –