I know how to set an include path:
set_include_path('/path');
But how can I set multiple include paths? For example: in two different directories.
To do this in a cross platform manner use the PATH_SEPARATOR constant:
set_include_path('/my/path' . PATH_SEPARATOR . '/my/other/path');
FYI: You can also set the include path in php.ini
or in your apache vhost configuration.
For your further reference: PHP documentation on set_include_path()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With