PHP Streams函数

PHP stream_resolve_include_path()函数根据与fopen()/include相同的规则,根据include路径解析文件名。

语法

stream_resolve_include_path(filename) 

参数

filename必填。 指定要解析的文件名。

返回值

返回包含解析的绝对文件名的字符串,否则返回 false

示例:stream_resolve_include_path() 示例

下面的示例显示了 stream_resolve_include_path() 函数的用法。

<?php
var_dump(stream_resolve_include_path("test.txt"));
?> 

上述代码的输出将类似于:

string(22) "/var/www/html/test.txt"