我收到以下错误:
Fatal error: Call to undefined function getAvnet() in C:\xampp\htdocs\ems\app\controllers\queries_controller.PHP on line 23
这条线是:
$ret = getAvnet('de',$searchstring);
据说打电话
function getAvnet($country,$query)
你需要使用
$ret = $this->getAvnet('de',$searchstring);
一般来说,你需要使用$this->访问类方法和变量时.