当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP get_resources()用法及代码示例


get_resources()function 是一个内置函数PHP以数组形式返回活动资源,并且可以选择过滤资源类型。

用法:

array get_resources(?string $type = null)

Parameters: 该函数接受一个参数,如下所述:

  • type: 如果已定义,此参数将限制函数仅返回给定类型的资源。如果字符串未知,则返回未知资源。如果省略,它将返回所有资源。

返回值:该函数以数组形式返回当前资源,按资源编号索引。

示例 1:在下面的代码中,我们将使用get_resources()函数返回特定资源。

PHP


<?php 
var_dump(get_resources('stream')) ; 
?>

输出:

array(3) {
    [1]=> resource(1) of type (stream)
    [2]=> resource(2) of type (stream)
    [3]=> resource(3) of type (stream)
}

示例 2:这是演示 get_resources() 函数的另一个示例。

PHP


<?php 
$fp = tmpfile(); 
var_dump(get_resources()); 
?>

输出:

array(4) {
    [1]=> resource(1) of type (stream)
    [2]=> resource(2) of type (stream)
    [3]=> resource(3) of type (stream)
    [4]=> resource(4) of type (stream)
}

参考: https://www.php.net/manual/en/function.get-resources.php


相关用法


注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP get_resources() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。