[PHP]File Details
개발관련/PHP 2012. 4. 20. 15:24 |"; // in bytes // filemtime: last modified (changed content) // filectime: last changed (changed content or metadata) // fileatime: last accessed (any read/change) echo strftime('%m/%d/%Y %H:%M', filemtime($filename)) . "0
"; echo strftime('%m/%d/%Y %H:%M', filectime($filename)) . "
"; echo strftime('%m/%d/%Y %H:%M', fileatime($filename)) . "
"; //touch($filename); echo strftime('%m/%d/%Y %H:%M', filemtime($filename)) . "
"; echo strftime('%m/%d/%Y %H:%M', filectime($filename)) . "
"; echo strftime('%m/%d/%Y %H:%M', fileatime($filename)) . "
"; $path_parts = pathinfo(__FILE__); echo $path_parts['dirname'] . "
"; // "/Users/kevin/Sites/btb_sandbox" echo $path_parts['basename'] . "
"; // "file_details.php" echo $path_parts['filename'], "
"; // "file_details" (since PHP 5.2) echo $path_parts['extension'], "
"; // "php" ?>
04/20/2012 06:21
04/20/2012 03:53
04/20/2012 03:53
04/20/2012 06:21
04/20/2012 03:53
04/20/2012 03:53
D:\wamp\www\php
file_details.php
file_details
php
'개발관련 > PHP' 카테고리의 다른 글
[PHP]Directories (0) | 2012.04.20 |
---|---|
[PHP]Directory Contents (0) | 2012.04.20 |
[PHP]File Delete (0) | 2012.04.20 |
[PHP]File Changer (0) | 2012.04.20 |
[PHP]File Basics (0) | 2012.04.20 |