www.evidhyashala.com provides free free mock test , free online exam , online exam free test series , online exam free , Online Test Exam Series , free exam papers past papers , online exam form ,Online Test Series for Exam Prep. Free Mock Tests - for All govt jobs. Bank PO, Clerk, SSC CGL, CHSL, JE, GATE, Insurance, Railways, IBPS RRB, SBI, RBI, IPPB, BSNL TTA

Sponser Link

know more info pls click here

filemtime():Linux, PHP: Differences between File Modification Time: filemtime() and File Change Time: filectime()




In most Unix file systems, the modification time and the change time of a file may not necessarily be the same, they are actually 2 very distinct concepts to deal with:

    File modification time represents when the data blocks or content are changed or modified, not including that of meta data such as ownership or ownergroup.
    File change time represents the time when the meta data or inode data of a file is altered, such as the change of permissions, ownership or group.

Accordingly, PHP function filemtime() returns the time the content is modified or updated while function filectime() returns the time when the meta data is updated or changed.

When you need to display a web page last modification time, for example, you should use filemtime() because you want to show the time when the page content is updated.


Popular Posts