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
相關用法
- PHP get_resource_id()用法及代碼示例
- PHP get_resource_type()用法及代碼示例
- PHP get_class_vars()用法及代碼示例
- PHP get_declared_interfaces()用法及代碼示例
- PHP get_parent_class()用法及代碼示例
- PHP get_meta_tags()用法及代碼示例
- PHP get_html_translation_table()用法及代碼示例
- PHP get_browser()用法及代碼示例
- PHP get_defined_vars()用法及代碼示例
- PHP get_headers()用法及代碼示例
- PHP get_class()用法及代碼示例
- PHP get_class_methods()用法及代碼示例
- PHP get_called_class()用法及代碼示例
- PHP get_object_vars()用法及代碼示例
- PHP get_declared_classes()用法及代碼示例
- PHP get_included_files()用法及代碼示例
- PHP get_current_user()用法及代碼示例
- PHP get_defined_functions()用法及代碼示例
- PHP get_mangled_object_vars()用法及代碼示例
- PHP get_include_path()用法及代碼示例
- PHP get_defined_constants()用法及代碼示例
- PHP get_loaded_extensions()用法及代碼示例
- PHP getrandmax()用法及代碼示例
- PHP getcwd()用法及代碼示例
- PHP getdate()用法及代碼示例
注:本文由純淨天空篩選整理自neeraj3304大神的英文原創作品 PHP get_resources() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。