Is there a way to set the include_path at runtime? The directory structure of my development machine is different from my (future) webhost's directory structure. I don't even know if I can update the webhost's php.ini file. I am assuming the worst (i.e. cannot update).
Hence, what is the best way to make the include_path as "independent" as possible? I don't want to hardcode the path in all my include() and require() statements as this is obviously not a good idea if I change webhosting environments.
Thanks.