array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'de', ), 'this' => array ( 0 => 'splfileobject.fstat.php', 1 => 'SplFileObject::fstat', 2 => 'Gets information about the file', ), 'up' => array ( 0 => 'class.splfileobject.php', 1 => 'SplFileObject', ), 'prev' => array ( 0 => 'splfileobject.fseek.php', 1 => 'SplFileObject::fseek', ), 'next' => array ( 0 => 'splfileobject.ftell.php', 1 => 'SplFileObject::ftell', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/spl/splfileobject/fstat.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SplFileObject::fstat — Gets information about the file
Gathers the statistics of the file. Behaves identically to fstat().
Diese Funktion besitzt keine Parameter.
Returns an array with the statistics of the file; the format of the array is described in detail on the stat() manual page.
Beispiel #1 SplFileObject::fstat() example
<?php
$file = new SplFileObject("/etc/passwd");
$stat = $file->fstat();
// Print only the associative part
print_r(array_slice($stat, 13));
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
Array ( [dev] => 771 [ino] => 488704 [mode] => 33188 [nlink] => 1 [uid] => 0 [gid] => 0 [rdev] => 0 [size] => 1114 [atime] => 1061067181 [mtime] => 1056136526 [ctime] => 1056136526 [blksize] => 4096 [blocks] => 8 )