stream_resolve_include_path
インクルードパスに対してファイル名を解決する
説明
stringfalse stream_resolve_include_path(string $filename
)
パラメータ
-
filename
-
解決するファイル名。
戻り値
解決したファイル名を含む文字列を返します。失敗した場合に false
を返します。
例
例1 stream_resolve_include_path の例
<?php
var_dump(stream_resolve_include_path("test.php"));
?>
string(22) "/var/www/html/test.php"