Query: lstat
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
LSTAT(3) 1 LSTAT(3) lstat - Gives information about a file or symbolic linkSYNOPSISarray lstat (string $filename)DESCRIPTIONGathers the statistics of the file or symbolic link named by $filename.PARAMETERSo $filename - Path to a file or a symbolic link.RETURN VALUESSee the manual page for stat(3) for information on the structure of the array that lstat(3) returns. This function is identical to the stat(3) function except that if the $filename parameter is a symbolic link, the status of the symbolic link is returned, not the status of the file pointed to by the symbolic link.EXAMPLESExample #1 Comparison of stat(3) and lstat(3) <?php symlink('uploads.php', 'uploads'); // Contrast information for uploads.php and uploads array_diff(stat('uploads'), lstat('uploads')); ?> The above example will output something similar to: Information that differs between the two files. Array ( [ino] => 97236376 [mode] => 33188 [size] => 34 [atime] => 1223580003 [mtime] => 1223581848 [ctime] => 1223581848 [blocks] => 8 )ERRORS/EXCEPTIONS Upon failure, an E_WARNING is emitted.NOTESNote The results of this function are cached. See clearstatcache(3) for more details. Tip As of PHP 5.0.0, this function can also be used with some URL wrappers. Refer to "Supported Protocols and Wrappers" to determine which wrappers support stat(3) family of functionality.SEE ALSOstat(3). PHP Documentation Group LSTAT(3)
Related Man Pages |
---|
filemtime(3) - php |
is_executable(3) - php |
filetype(3) - php |
lstat(3) - php |
filegroup(3) - php |
Similar Topics in the Unix Linux Community |
---|
stat command |
monitor daily file uploads |
Average of a column in multiple files |
Why du and stat are showing different mtime? |
Effective Commands To Get Time/Size in Bash |