+1 vote
in PHP by

Which PHP function determines the last access time of a file?

a) filetime()

b) fileatime()

c) filectime()

d) None of the above

1 Answer

0 votes
by

(b) fileatime()

Description: The fileatime() function in PHP is used to return the last access time of a file as a UNIX timestamp. On failure, the fileatime() returns false.

...