duanjizhan9353 2013-01-02 01:20
浏览 357
已采纳

PHP调用未定义的函数

I am trying to call a function from another function. I get an error:

Fatal error: Call to undefined function getInitialInformation() 
in controller.php on line 24

controller.php file:

require_once("model/model.php"); 

function intake() {
    $info = getInitialInformation($id); //line 24
}

model/model.php

function getInitialInformation($id) {
    return $GLOBALS['em']->find('InitialInformation', $id);
}

Things already tried:

  1. Verified that the require_once works, and the file exists in the specified location.
  2. Verified that the function exists in the file.

I am not able to figure this out. Am I missing something here?

  • 写回答

6条回答 默认 最新

  • duanliang9288 2013-01-02 02:04
    关注

    This was a developer mistake - a misplaced ending brace, which made the above function a nested function.

    I see a lot of questions related to the undefined function error in SO. Let me note down this as an answer, in case someone else have the same issue with function scope.

    Things I tried to troubleshoot first:

    1. Searched for the php file with the function definition in it. Verified that the file exists.
    2. Verified that the require (or include) statement for the above file exists in the page. Also, verified the absolute path in the require/include is correct.
    3. Verified that the filename is spelled correctly in the require statement.
    4. Echoed a word in the included file, to see if it has been properly included.
    5. Defined a separate function at the end of file, and called it. It worked too.

    It was difficult to trace the braces, since the functions were very long - problem with legacy systems. Further steps to troubleshoot were this:

    1. I already defined a simple print function at the end of included file. I moved it to just above the "undefined function". That made it undefined too.
    2. Identified this as some scope issue.

    3. Used the Netbeans collapse (code fold) feature to check the function just above this one. So, the 1000 lines function above just collapsed along with this one, making this a nested function.

    4. Once the problem identified, cut-pasted the function to the end of file, which solved the issue.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(5条)

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog