CakePHP - Фатальная ошибка: вызов неопределенной функции

I получить следующую ошибку:

Фатальная ошибка: вызов неопределенной функции getAvnet () в C: \ xampp \ htdocs \ ems \ app \ controllers \ questions_controller.php в строке 23

Строка:

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

предположительно вызывает

function getAvnet($country, $query)
7
задан Matthew Strawbridge 27 October 2013 в 09:45
поделиться

1 ответ

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

17
ответ дан 6 December 2019 в 14:00
поделиться
Другие вопросы по тегам:

Похожие вопросы: