stream_is_local

(PHP 5 >= 5.2.4, PHP 7)

stream_is_localChecks if a stream is a local stream

说锟斤拷

stream_is_local ( mixed $stream_or_url ) : bool

Checks if a stream, or a URL, is a local one or not.

锟斤拷锟斤拷

stream_or_url

The stream resource or URL to check.

锟斤拷锟斤拷值

锟缴癸拷时锟斤拷锟斤拷 TRUE锟斤拷 锟斤拷锟斤拷锟斤拷失锟斤拷时锟斤拷锟斤拷 FALSE锟斤拷

锟斤拷锟斤拷

Example #1 stream_is_local() example

Basic usage example.

<?php
var_dump
(stream_is_local("http://example.com"));
var_dump(stream_is_local("/etc"));
?>

锟斤拷锟斤拷锟斤拷锟教碉拷锟斤拷锟斤拷锟斤拷锟斤拷冢锟�

bool(false)
bool(true)