Help for this page

Select Code to Download


  1. or download this
    # 24 hours * 60 minutes/hour * 60 seconds/minute
    $threshhold = 86400;
    ...
    if( ($currenttime - $mtime) > $threshhold){
        # file was modified within 24 hours
    }
    
  2. or download this
    if( $mtime > ($currenttime - ($currenttime % 86400)){
       # file was modified this calendar day
    }