get_include_path

(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)

get_include_path获取当前 include_path 配置选项

描述

get_include_path(): string|false

获取当前 include_path 配置选项的值。

参数

此函数没有参数。

返回值

返回路径,作为字符串,或在失败时返回 false

示例

示例 #1 get_include_path() 示例

<?php
echo get_include_path();

// 或者使用 ini_get()
echo ini_get('include_path');
?>

参见

添加笔记

用户贡献笔记 1 个笔记

12
gtisza at gmail dot com
11 年前
如果您试图在您的 include 路径上查找文件,有一个更好的方法:https://php.net/manual/en/function.stream-resolve-include-path.php
To Top