CakePHP - 致命错误:调用未定义的函数

时间:2010-08-15 17:28:42

标签: php cakephp oop function fatal-error

我收到以下错误:

  

致命错误:在第23行的C:\ xampp \ htdocs \ ems \ app \ controllers \ queries_controller.php中调用未定义的函数getAvnet()

该行是:

$ret = getAvnet('de', $searchstring);

据说打电话

function getAvnet($country, $query)

2 个答案:

答案 0 :(得分:15)

您需要使用

$ret = $this->getAvnet('de', $searchstring);

通常,在访问类方法和变量时需要使用$this->

阅读:http://php.net/manual/en/language.oop5.basic.php

答案 1 :(得分:-2)

$ret = $this->getAvnet('de', $searchstring);