setting filemtime

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jeff

    setting filemtime

    I see that php has filemtime and stat.

    I don't see how to set a files last modification time. How do you do that?

    Jeff
  • Jerry Stuckle

    #2
    Re: setting filemtime

    Jeff wrote:
    I see that php has filemtime and stat.
    >
    I don't see how to set a files last modification time. How do you do that?
    >
    Jeff
    >
    You can't, other than the current time (i.e. open the file for append
    and close it again).

    --
    =============== ===
    Remove the "x" from my email address
    Jerry Stuckle
    JDS Computer Training Corp.
    jstucklex@attgl obal.net
    =============== ===

    Comment

    • Sjoerd

      #3
      Re: setting filemtime

      On Aug 13, 2:18 am, Jeff <jeff@spam_me_n ot.comwrote:
        I don't see how to set a files last modification time. How do you do that?
      touch() — Sets access and modification time of file.

      Comment

      Working...