stream_is_local
PHP function
Edit on GitHub ✎
(PHP 5 >= 5.2.4, PHP 7, PHP 8)
Checks if a stream is a local stream
Description
stream_is_local(resource|string $stream): bool
Checks if a stream, or a URL, is a local one or not.
Parameters
streamThe stream
resourceor URL to check.
Return Values
Success
Examples
stream_is_local() example
Basic usage example.
php
<?php
var_dump(stream_is_local("http://example.com"));
var_dump(stream_is_local("/etc"));
?>The above example will output something similar to:
output
bool(false)
bool(true)