stream_is_local()函数是PHP中的内置函数,用于检查流是本地流还是URL。
用法:
bool stream_is_local( $stream )
参数:该函数接受单个参数$stream,该参数用于指定要检查的流。
返回值:如果成功,此函数返回True;如果失败,则返回False。
以下示例程序旨在说明PHP中的stream_is_local()函数:
程序1:
<?php
// PHP program to illustrate
// stream_is_local function
$strm = "https://www.geeksforgeeks.org";
$res = stream_is_local($strm);
// Print result
var_dump($res);
?>
输出:
bool(false)
程序2:程序通过函数打印返回数组的长度。
<?php
// PHP program to illustrate
// stream_is_local function
$stream1 = '/geeks.jpg'; // local
$stream2 = 'file://geeks.jpg'; // local
$stream3 = 'http://geeksforgeeks.org'; // non local stream
// Checking all strings and print result
$local = stream_is_local($stream1);
var_dump($local);
$shouldbelocal = stream_is_local($stream2);
var_dump($shouldbelocal);
$remote = stream_is_local($stream3);
var_dump($remote);
?>
输出:
bool(true) bool(false) bool(false)
参考: http://php.net/manual/en/function.stream-is-local.php
相关用法
- PHP abs()用法及代码示例
- PHP end()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP each()用法及代码示例
- PHP Ds\Map xor()用法及代码示例
- CSS var()用法及代码示例
- d3.js d3.set.has()用法及代码示例
- PHP sin( )用法及代码示例
- PHP Ds\Map put()用法及代码示例
- p5.js nfs()用法及代码示例
- p5.js int()用法及代码示例
- PHP pos()用法及代码示例
注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | stream_is_local() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。