stream_resolve_include_path
stream_resolve_include_path
(PHP 5 >= 5.3.2, PHP 7)
stream_resolve_include_path - 根据包含路径解析文件名
描述
string stream_resolve_include_path ( string $filename )
filename
按照与fopen()/ include相同的规则解析包含路径。
参数
filename
要解析的文件名。
返回值
返回一个包含已解析绝对文件名的字符串,或失败时返回FALSE
。
示例
示例#1 stream_resolve_include_path()示例
基本用法示例。
<?php
var_dump(stream_resolve_include_path("test.php")
?>
上面的例子会输出类似于:
string(22) "/var/www/html/test.php"
← stream_register_wrapper
stream_select →