STDERR PHP致命错误:调用未定义的方法Customer :: isOwnStudents()

时间:2013-11-14 22:52:25

标签: php

  

[STDERR] PHP致命错误:在第62行的/upload/catalog/view/theme/Super_green/template/common/header.tpl中调用未定义的方法Customer :: isOwnStudents()

header.tpl看起来像

<?php
if ($this->customer->isLogged()) {
if($this->customer->isOwnStudents()>0) echo $orderfood;
echo $language . $currency . $cart . $konto;`}
?>

class ModelAccountStudents extends Model {  

public function isOwnStudents() {
        $results = $this->getStudentses();
        if(sizeof($results)>0) return true;
        else return false;
    } 

此代码中有什么问题。我不知道为什么我会犯这个错误。

1 个答案:

答案 0 :(得分:0)

从您的代码看,$this->customerCustomer的实例 - 您已为isOwnStudents()类定义了ModelAccountStudents方法,而不是{{1} }。class。