downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

stream_notification_callback> <stream_get_wrappers
[edit] Last updated: Fri, 07 Jun 2013

view this page in

stream_is_local

(PHP 5 >= 5.2.4)

stream_is_localローカルストリームかどうかを調べる

説明

bool stream_is_local ( mixed $stream_or_url )

ストリームあるいは URL が、ローカルのものであるかどうかを調べます。

パラメータ

stream_or_url

調べたいストリームリソースあるいは URL。

返り値

成功した場合に TRUE を、失敗した場合に FALSE を返します。

例1 stream_is_local() の例

基本的な使用例です。

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

上の例の出力は、 たとえば以下のようになります。

bool(false)
bool(true)



add a note add a note User Contributed Notes stream_is_local - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites