stream_is_local

(PHP 5 >= 5.2.4)

stream_is_localПроверяет, является ли поток локальным потоком

Описание

bool stream_is_local ( mixed $stream_or_url )

Проверяет, является ли поток или URL локальным или нет.

Список параметров

stream_or_url

Ресурс потока (resource) или URL для проверки.

Возвращаемые значения

Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.

Примеры

Пример #1 stream_is_local() example

Пример простого использования.

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

Результатом выполнения данного примера будет что-то подобное:

bool(false)
bool(true)

Коментарии

The function stream_is_local() does not work with remote mounts points, like sshfs mount points (it will return true as if it was local).
2016-11-22 14:56:56
http://php5.kiev.ua/manual/ru/function.stream-is-local.html
Автор:
this is not a bug
mounting a remote filesystem locally "imports" it so it is available to userland programs like a local directory.
2017-02-20 16:30:56
http://php5.kiev.ua/manual/ru/function.stream-is-local.html
It appears to return incorrectly for 'file://' wrapper which I would consider to be local.

CODE:
$file1 = '/somefile.jpg';
$file2 = 'file://shouldbelocal.jpg';
$file3 = 'http://someotherfile.jpg';

$local = stream_is_local($file1);
$shouldbelocal = stream_is_local($file2);
$remote = stream_is_local($file3);
var_dump($local, $shouldbelocal, $remote);

RESULT:
bool(true)
bool(false)
bool(false)
2017-05-24 13:33:13
http://php5.kiev.ua/manual/ru/function.stream-is-local.html
Автор:
but hhvm for `file://shouldbelocal.jpg` returns true
https://3v4l.org/ULCni
2018-02-17 23:20:31
http://php5.kiev.ua/manual/ru/function.stream-is-local.html
Автор:
<?php
$file1 
'/somefile.jpg';
$file2 'file://shouldbelocal.jpg';
$file3 'http://someotherfile.jpg';
$file4 'file:///indeedlocal.jpg'// Please note '///' instead of '//'

$local stream_is_local($file1);
$shouldbelocal stream_is_local($file2);
$remote stream_is_local($file3);
$indeedlocal stream_is_local($file4);
var_dump($local$shouldbelocal$remote$indeedlocal);
2021-11-03 13:23:43
http://php5.kiev.ua/manual/ru/function.stream-is-local.html

    Поддержать сайт на родительском проекте КГБ