当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。