stream_resolve_include_path
Description
Resolve filename against the include path
Syntax
stream_resolve_include_path ( string $filename ) : string
Parameters
filename
The filename to resolve.
Return
Returns a string containing the resolved absolute filename, or FALSE on failure.
Examples
1
<? $filename = "stream_resolve_include_path.txt"; $return = stream_resolve_include_path($filename); echo $return; ?>
/home/user/public_html/stream_resolve_include_path.txt