get_resource_id() 函数是 PHP 中的内置函数,它返回给定资源的整数 id。此函数提供了一种为资源生成整数的安全方法。
用法:
get_resource_id($resource) ;
Parameters: 该函数接受一个参数,如下所述:
- $资源:我们想要其资源 ID 的资源的名称。
返回值:此函数返回给定资源的 int 标识符。
示例 1:在下面的代码示例中,我们将打印给定资源的 id。
PHP
<?php
$res = tmpfile() ;
// Print resource id of tmpfile
echo get_resource_id($res);
?>
输出:
4
示例 2:在下面的代码示例中,我们打开一个文本文件,然后返回他的资源 ID。根据您的计算机,资源 ID 可能会有所不同。
PHP
<?php
$res = fopen("text.txt", "rb");
echo get_resource_id($res);
?>
输出:
5
参考: https://www.php.net/manual/en/function.get-resource-id.php
相关用法
- PHP get_resource_id()用法及代码示例
- PHP get_resource_type()用法及代码示例
- PHP get_resources()用法及代码示例
- 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()用法及代码示例
注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP get_resource_id() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。