如果您尝试在include路径上查找文件,则有更好的方法:https://php.net/manual/en/function.stream-resolve-include-path.php
(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)
get_include_path — 获取当前include_path配置选项
此函数没有参数。
返回路径(字符串),如果失败则返回false
。
示例 #1 get_include_path() 示例
<?php
echo get_include_path();
// 或者使用 ini_get()
echo ini_get('include_path');
?>
如果您尝试在include路径上查找文件,则有更好的方法:https://php.net/manual/en/function.stream-resolve-include-path.php