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:
- Verified that the require_once works, and the file exists in the specified location.
- Verified that the function exists in the file.
I am not able to figure this out. Am I missing something here?
Many times the problem comes because
php
does not support short open tags inphp.ini
file, i.e:You must use:
Presently I am working on web services where my function is defined and it was throwing an error undefined function.I just added this in autoload.php in codeigniter
$autoload['helper'] = array('common','security','url');
common is the name of my controller.
Your function is probably in a different namespace than the one you're calling it from.
http://php.net/manual/en/language.namespaces.basics.php
I happened that problem on a virtual server, when everything worked correctly on other hosting. After several modifications I realized that I
include
orrequire_one
works on all calls except in a file. The problem of this file was the code< ?php ? >
At the beginning and end of the text. It was a script that was only< ?
, and in that version of apache that was running did not workHow to reproduce the error, and how to fix it:
Put this code in a file called
p.php
:Run it like this:
We get error:
Solution: use
$this->salt();
instead ofsalt();
So do it like this instead:
If someone could post a link to why $this has to be used before PHP functions within classes, yeah, that would be great.
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:
It was difficult to trace the braces, since the functions were very long - problem with legacy systems. Further steps to troubleshoot were this:
Identified this as some scope issue.
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.
Once the problem identified, cut-pasted the function to the end of file, which solved the issue.