Ignore:
Timestamp:
Apr 13, 2010, 5:22:25 PM (14 years ago)
Author:
george
Message:
  • Opraveno: Na konce řádků při generování exportů se vkládaly nulové znaky.
  • Upraveno: Místo zaznamenávání odkazujících webů na bannery se budou zaznamenávat veškeré cizí přístup včetně přístup přes bannery.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/FileStream.php

    r447 r460  
    7474  }
    7575
    76   public function ReadString()
     76  public function ReadLine()
     77  {
     78    return(fgets($this->Handle));
     79  }   
     80
     81  public function ReadTextLine()
    7782  {
    7883    return(fgets($this->Handle));
     
    111116  public function WriteString($Value)
    112117  {
    113     fwrite($this->Handle, $Value."\0");
     118    fwrite($this->Handle, $Value);
     119  }
     120
     121  public function WriteLine($Value)
     122  {
     123    fputs($this->Handle, $Value);
    114124  }
    115125
Note: See TracChangeset for help on using the changeset viewer.