Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

stream_resolve_include_path

Description

The stream_resolve_include_path Stream for PHP 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
HomeMenu