我收到以下错误:
致命错误:在第23行的C:\ xampp \ htdocs \ ems \ app \ controllers \ queries_controller.php中调用未定义的函数getAvnet()
该行是:
$ret = getAvnet('de', $searchstring);
据说打电话
function getAvnet($country, $query)
答案 0 :(得分:15)
您需要使用
$ret = $this->getAvnet('de', $searchstring);
通常,在访问类方法和变量时需要使用$this->
。
答案 1 :(得分:-2)
$ret = $this->getAvnet('de', $searchstring);