Ben dahil yolunu ayarlamak için biliyorum:
set_include_path('/path');
But how can I set multiple include paths? For example: in two different directories.
:) (Iki nokta üst üste ile ayırın.
set_include_path("/some/dir:/other/dir:.");
Daha fazla bilgi php.net.
Bir çapraz platform şekilde yapmak için PATH_SEPARATOR sabit kullanın:
set_include_path('/my/path' . PATH_SEPARATOR . '/my/other/path');
Bilginize: Ayrıca php.ini
veya apache vhost konfigürasyonunda yolu dahil ayarlayabilirsiniz.
Sizin daha fazla referans için: PHP documentation on set_include_path()