Пример #1
0
 /**
  * Update file times
  *
  * @access public
  *
  * @param $path file path
  * @param $atime access time
  * @param $mtime modification time
  */
 function utime($path, $atime, $mtime)
 {
     Log::in("UTIME");
     /* Check for passthru */
     if (PassThru::check($path)) {
         $ret = PassThru::utime($path, $atime, $mtime);
     } else {
         Log::output("UTIME - always works for query");
         $ret = 0;
     }
     Log::out("UTIME");
     return $ret;
 }