定义和用法
函数 get_resource_id() 返回给定资源的整数标识符。这resource是一种保存对外部资源的引用的变量。资源可以是文件句柄、数据库连接或 URL 句柄。每个资源都由一个唯一的 ID 标识。在以前的 PHP 版本中,我们需要将资源强制转换为 int 以获取资源 id。
用法
int get_resource_id ( resource $res )
参数
Sr.No | 参数及说明 |
---|---|
1 | res 一种保存对外部资源的引用的变量。 |
返回值
此函数返回给定 res 的 int 标识符。此函数本质上是 res 的 int 类型转换,以便更轻松地检索资源 ID。
依赖关系
PHP 8.0
示例
下面的例子演示了函数 get_resource_id() 的使用
<?php
$x = fopen('test.txt', 'rb');
echo get_resource_id($x);
?>
输出
这将产生以下结果 -
1
相关用法
- PHP get_resource_type()用法及代码示例
- PHP get_class()用法及代码示例
- PHP get_declared_interfaces()用法及代码示例
- PHP get_class_methods()用法及代码示例
- PHP get_headers()用法及代码示例
- PHP get_class_vars()用法及代码示例
- PHP get_object_vars()用法及代码示例
- PHP get_browser()用法及代码示例
- PHP get_html_translation_table()用法及代码示例
- PHP get_parent_class()用法及代码示例
- PHP get_defined_vars()用法及代码示例
- PHP get_called_class()用法及代码示例
- PHP get_declared_classes()用法及代码示例
- PHP get_meta_tags()用法及代码示例
- PHP getimagesizefromstring()用法及代码示例
- PHP getservbyport()用法及代码示例
- PHP gethostnamel()用法及代码示例
- PHP getcwd()用法及代码示例
- PHP getcwd( )用法及代码示例
- PHP getrandmax()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - get_resource_id() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。