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: Sat, 18 May 2013

view this page in

stream_is_local

(PHP 5 >= 5.2.4)

stream_is_localAkım, bir yerel akımsa TRUE döner

Açıklama

bool stream_is_local ( mixed $akım_veya_url )

akım_veya_url ile belirtilen URL veya akım bir yerel akımsa TRUE döner.

Değiştirgeler

akım_veya_url

Sınanacak akım özkaynağı veya URL.

Dönen Değerler

Başarı durumunda TRUE, başarısızlık durumunda FALSE döner.

Örnekler

Örnek 1 - stream_is_local() örneği

Basit bir kullanım örneği.

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

Yukarıdaki örnek şuna benzer bir çıktı üretir:

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