dismiss Step into the future! Click here to switch to the beta php.net site
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, 28 Jun 2013

view this page in

stream_is_local

(PHP 5 >= 5.2.4)

stream_is_localChecks if a stream is a local stream

Description

bool stream_is_local ( mixed $stream_or_url )

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

Parameters

stream_or_url

The stream resource or URL to check.

Return Values

Returns TRUE on success or FALSE on failure.

Examples

Example #1 stream_is_local() example

Basic usage example.

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

The above example will output something similar to:

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 | stats | sitemap | contact | advertising | mirror sites