| Bug #10171 | calling function before it is defined only works in same file | ||||
|---|---|---|---|---|---|
| Submitted: | 4 Apr 2001 7:05pm UTC | Modified: | 5 Apr 2001 3:37pm UTC | ||
| From: | aboyd at ssti dot com | Assigned to: | |||
| Status: | Closed | Category: | Documentation problem | ||
| Version: | 4.0.4pl1 | OS: | Windows NT 4 sp 5 & Solaris 8 | ||
[4 Apr 2001 7:05pm UTC] aboyd at ssti dot com
[5 Apr 2001 5:03am UTC] cynic@php.net
problem here is that include()s & require()s are runtime thingies. I got bitten by this just yesterday: if you e. g. redeclare a function in a require()d file, the 'fatal error: function redeclaration...' does appear, but at runtime, not during compilation. Anyway, this is what Andi told me on the subject: The main reason [require() was changed to happen at run time rather than at compile time] was that it was supposed to improve performance and it didn't. It actually tended to slow things down. Removing this also allowed us to reduce the memory usage of PHP scripts (not as important). (...) It really sucked and we managed to clean up some code and internals due to taking it out. I wouldn't want to put it back in. So, this is by design. -> docuprob
[5 Apr 2001 3:37pm UTC] aboyd at ssti dot com
Thanks for the info from Andi and cynic. The reason this feature is so nice is because I have a wrapper that pulls in whatever Web page is being viewed. The wrapper needs to change its headers on the fly, depending on page contents. I wanted to use the functions as a signal of some sort -- the page content telling the wrapper, "send this header". I can't do this if I can't call functions in included files. So if includes and requires don't work out, I hope the gang comes up with some way for different bits of code to message each other. In any case, I've added a note to the documentation, so I think the documentation end of things is now fixed. I'll close this bug. Thanks!
