當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP get_include_path()用法及代碼示例


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


相關用法


注:本文由純淨天空篩選整理自neeraj3304大神的英文原創作品 PHP get_include_path() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。