get_include_path()function 是一個內置函數PHP將當前的include_path返回給調用者。
用法:
string|false get_include_path()
參數:該函數不接受任何參數。
返回值:該函數返回字符串格式的路徑,或者“錯誤的”否則。
示例 1:在下麵的代碼示例中,我們將使用get_include_path()函數到打印路徑。
PHP
<?php
echo get_include_path() ;
?>
輸出:
usr/share/php
注意:根據您的係統,輸出會有所不同。
示例 2:在下麵的代碼示例中,比較兩個路徑並打印輸出。
PHP
<?php
$path1 = get_include_path() ;
$path2 = ini_get('include_path') ;
if($path1 == $path2){
echo "Both the paths are same." ;
} else {
echo "Both the paths are not same." ;
}
?>
輸出:
Both the paths are same
參考:https://www.php.net/manual/en/function.get-include-path.php
相關用法
- PHP get_included_files()用法及代碼示例
- PHP get_class_vars()用法及代碼示例
- PHP get_declared_interfaces()用法及代碼示例
- PHP get_parent_class()用法及代碼示例
- PHP get_meta_tags()用法及代碼示例
- PHP get_resource_id()用法及代碼示例
- PHP get_resource_type()用法及代碼示例
- PHP get_html_translation_table()用法及代碼示例
- PHP get_browser()用法及代碼示例
- PHP get_defined_vars()用法及代碼示例
- PHP get_headers()用法及代碼示例
- PHP get_class()用法及代碼示例
- PHP get_class_methods()用法及代碼示例
- PHP get_called_class()用法及代碼示例
- PHP get_object_vars()用法及代碼示例
- PHP get_declared_classes()用法及代碼示例
- PHP get_current_user()用法及代碼示例
- PHP get_defined_functions()用法及代碼示例
- PHP get_mangled_object_vars()用法及代碼示例
- PHP get_resources()用法及代碼示例
- PHP get_defined_constants()用法及代碼示例
- PHP get_loaded_extensions()用法及代碼示例
- PHP getrandmax()用法及代碼示例
- PHP getcwd()用法及代碼示例
- PHP getdate()用法及代碼示例
注:本文由純淨天空篩選整理自neeraj3304大神的英文原創作品 PHP get_include_path() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。