📅  最后修改于: 2023-12-03 15:03:39.764000             🧑  作者: Mango
stream_is_local()
是PHP中的一个函数,用于检查给定的流是否是本地流。
stream_is_local(mixed $stream_or_url): bool
$stream_or_url
:要检查的流或URL。如果指定的流是本地流,则返回true
,否则返回false
。如果发生错误,则会产生警告。
// 检查本地文件流是否为本地流
$file = fopen('/path/to/file', 'r');
if (stream_is_local($file)) {
echo 'The stream is local.';
} else {
echo 'The stream is not local.';
}
// 检查远程文件流是否为本地流
$remoteFile = fopen('http://example.com/file', 'r');
if (stream_is_local($remoteFile)) {
echo 'The stream is local.';
} else {
echo 'The stream is not local.';
}
输出结果:
The stream is local.
The stream is not local.