(PHP 5 >= 5.2.4, PHP 7)
stream_is_local — Checks if a stream is a local stream
Checks if a stream, or a URL, is a local one or not.
Gibt bei Erfolg TRUE
zurück. Im Fehlerfall wird FALSE
zurückgegeben.
Beispiel #1 stream_is_local() example
Basic usage example.
<?php
var_dump(stream_is_local("http://example.com"));
var_dump(stream_is_local("/etc"));
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
bool(false) bool(true)