Possible Duplicate:
Why is require_once so bad to use?
When PHP is including a file I assume it stores the file name inside a array.
Then, when including another file, it will check that array to see if it's already included, right?
So what's the big deal here? Why are people so scared of this array check? It's not like you're including milions of files...
in_array checks are made all the time. I use them in almost all functions :)