-2

このコードに不正なオフセットがあるというエラーが表示されます。

function _generate_users($ceny, $komu, $ile, $admin=false){
    $price=($ceny*$ile);
    if($admin == false){
        $this->ceny['rent'] = $ceny['rent'];
        $this->ceny['pay'] = $ceny['pay'];
        $this->ceny['rec'] = $ceny['rec'];
    }
}//Function ends.

不正なオフセットは次の 3 行にあります。

$this->ceny['rent'] = $ceny['rent'];
$this->ceny['pay'] = $ceny['pay'];
$this->ceny['rec'] = $ceny['rec'];
4

2 に答える 2