문제

I get the following error:

Fatal error: Call to undefined function getAvnet() in C:\xampp\htdocs\ems\app\controllers\queries_controller.php on line 23

The line is:

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

supposedly calling

function getAvnet($country, $query)
도움이 되었습니까?

해결책

You need to use

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

In general you need to use $this-> when accessing class methods and variables.

Read: http://php.net/manual/en/language.oop5.basic.php

다른 팁

$ret = $this->getAvnet('de', $searchstring);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top