get_resource_id
(PHP 8)
get_resource_id — 指定されたリソースの、数値の識別子を返す
パラメータ
resource
-
評価されるリソースハンドル
例
例1 get_resource_id() が、リソースを数値にキャストした場合と同じ結果になる例
<?php
$handle = fopen("php://stdout", "w");
echo (int) $handle . "\n";
echo get_resource_id($handle);
?>
上の例の出力は、 たとえば以下のようになります。
698 698
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google