Stream 函数
PHP 手册

stream_is_local

(PHP 5 >= 5.2.4)

stream_is_localChecks if a stream is a local stream

说明

bool stream_is_local ( mixed $stream_or_url )

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)


Stream 函数
PHP 手册