Php/docs/function.stream-is-local

来自菜鸟教程
跳转至:导航、​搜索

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.


以上例程的输出类似于:


bool(false)
bool(true)