이 기사의 예에서는 PHP에서 파일 크기와 파일 생성 시간을 얻는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 분석은 다음과 같습니다.
파일의 마지막 액세스 시간, 마지막 수정 시간, 파일 크기 등을 포함하여 파일의 다양한 속성이 PHP에 표시될 수 있습니다.
<HTML> <HEAD> <TITLE>Returning information about a file</TITLE> </HEAD> <BODY> <?php print "The size of the file is "; print filesize( "samplefile.doc" ); print "<br>"; $atime = fileatime( "samplefile.doc" ); print "This file accessed on "; print date("l, M d, Y g:i a", $atime); print "<br>"; $mtime = filemtime( "samplefile.doc" ); print "This file was modified on "; print date("l, M d, Y g:i a", $mtime); print "<br>"; $ctime = filectime( "samplefile.doc" ); print "This file was changed on "; print date("l, M d, Y g:i a", $ctime); ?> </BODY> </HTML>
이 기사가 모든 사람의 PHP 프로그래밍 설계에 도움이 되기를 바랍니다.