CakePHP - 致命错误:调用未定义的函数
我收到以下错误:
致命错误:在第 23 行调用 C:\xampp\htdocs\ems\app\controllers\queries_controller.php 中未定义的函数 getAvnet()
该行是:
$ret = getAvnet('de', $searchstring);
据称正在调用
function getAvnet($country, $query)
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)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用
一般情况下,访问类方法和变量时需要使用
$this->
。阅读:http://php.net/manual/en/language.oop5.basic .php
You need to use
In general you need to use
$this->
when accessing class methods and variables.Read: http://php.net/manual/en/language.oop5.basic.php