定義和用法
函數 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。