= 4.3.0, PHP 5, PHP 7, PHP 8)set_include_path — 設(shè)置 include_path 配置選項(xiàng)說明set_include_path(string $new_include_path): string為當(dāng)前腳本設(shè)">
(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)
set_include_path — 設(shè)置 include_path 配置選項(xiàng)
$new_include_path
): string為當(dāng)前腳本設(shè)置 include_path 運(yùn)行時(shí)的配置選項(xiàng)。
成功時(shí)返回舊的 include_path 或者在失敗時(shí)返回 false
。
示例 #1 set_include_path() 例子
<?php
set_include_path('/usr/lib/pear');
// 或使用 ini_set
ini_set('include_path', '/usr/lib/pear');
?>
示例 #2 添加到include path
利用常量 PATH_SEPARATOR
可跨平臺擴(kuò)展 include path。
這個例子中我們把 /usr/lib/pear 添加到了
現(xiàn)有的 include_path
的尾部。
<?php
$path = '/usr/lib/pear';
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
?>