Example #1
0
 public static function close()
 {
     // unlock and close the file
     flock(self::$_FI, LOCK_UN);
     fclose(self::$_FI);
     self::$_FI = null;
     return true;
 }