[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;
}
此代码中有什么问题。我不知道为什么我会犯这个错误。
答案 0 :(得分:0)
从您的代码看,$this->customer
是Customer
的实例 - 您已为isOwnStudents()
类定义了ModelAccountStudents
方法,而不是{{1} }。class。