Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP의 fileatime() 함수

<시간/>

fileatime() 함수는 파일의 마지막 액세스 시간을 반환합니다. 파일에 마지막으로 액세스한 시간을 UNIX 타임스탬프로 반환합니다. 실패 시 false를 반환합니다.

구문

fileatime ( file_path );

매개변수

  • file_path - 마지막 액세스 시간을 찾을 파일의 경로입니다.

반환

fileatime() 함수는 파일에 마지막으로 액세스한 시간을 UNIX 타임스탬프로 반환합니다. 실패 시 false를 반환합니다.

예시

<?php
   echo fileatime("new.txt");
?>

출력

1315416291

이제 마지막 액세스 시간을 사람이 읽을 수 있는 형식의 날짜로 구해 보겠습니다.

예시

<?php
   echo "Last access time of the file: ".date("F d Y H:i:s.",fileatime("new.txt"));
?>

출력

Last access time of the file: September 22 2018 11:23:52