How do you check if an include / require_once exists before you call it, I tried putting it in an error block, but PHP didn't like that.
I think file_exists() would work with some effort, however that would require the whole file path, and a relative include could not be passed into it easily.
Are there any other ways?
file_exists(): checks whether a file or directory exists.is_file()would be a better fit in this case. – Alix Axel Feb 12 '10 at 15:22is_file()is better thanfile_exists()but isn't it even better to useis_readable()? – AgentConundrum Nov 24 '10 at 7:47is_readable(): "Returns TRUE if the file or directory specified by filename exists and is readable, FALSE otherwise". – Alix Axel Nov 24 '10 at 12:05