Sorry if this is perceived to be a silly question, but I have the following 2 blocks of "sample" code contained in an include file (just focus on the order of the lines of code and not the code itself):
SAMPLE A
function helloWorld() {
return 'hello world';
}
echo helloWorld();
SAMPLE B
echo helloWorld();
function helloWorld() {
return 'hello world';
}
When I run the script, they both produce the same results. That's great.
But my question is (and I could not find a good answer or reference in any of my searches), is it okay to call the function before it is defined (ie, from a sequential parsing of the script file perspective)?
I don't want to run into any issues or deprecation down the road if I leave the function call ahead of the function definition block in my script file.
Thanks for taking a moment to comment on this minor question.

.for concatenations or it's going to be replaced with+?" "Aren't quotes going to be deprecated", etc. Every question should have at least a slightest reason, not being taken completely out of nowhere. – Your Common Sense Dec 6 '10 at 16:00