Return information about the open file:
<?php
$file = fopen("test.txt","r");
print_r(fstat($file));
fclose($file);
?>
Run Example »
The fstat() function returns information about an open file.
Note: The results from this function will differ from server to server. The array may contain the number index, the name index, or both.
Tip: This function is similar to stat(), except that with this function the file must be open.
fstat(
file)
Parameter | Description |
---|---|
file | Required. Specifies the open file to check |
Return Value: | An array with information about the open file:
|
---|---|
PHP Version: | 4.0+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!