stream_is_local

(PHP 5 >= 5.2.4, PHP 7, PHP 8)

stream_is_localChecks if a stream is a local stream

Опис

stream_is_local(resource|string $stream): bool

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

Параметри

stream

The stream resource or URL to check.

Значення, що повертаються

Повертає true у разі успіху або false в разі помилки.

Приклади

Приклад #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)

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top