php filectime() function
Translation results:
英[taɪm] 美[taɪm]
n.Time; time; era; time
vt. Arrange time for...; measure the time of...; adjust (mechanical) Speed; the speed with which a clock or watch is set correctly
vi. In time; Harmony; Beat
adj. Timing; Regular; [American English] Installment (payment)
int.[Sports]
Third person singular: times Plural: times Present participle: timing Past tense: timed
php filectime() functionsyntax
Function: Return the last inode modification time of the specified file
Syntax: filectime(filename)
Parameters:
Parameter | Description |
filename | Required. Specifies the documents to be checked. |
Description: This function returns the last time the inode of the file was modified. Returns false if an error occurs. The time is returned as a Unix timestamp.
php filectime() functionexample
<?php $file = filectime("./test.txt"); echo $file; ?>