Changeset 460 for trunk/includes/FileStream.php
- Timestamp:
- Apr 13, 2010, 5:22:25 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/FileStream.php
r447 r460 74 74 } 75 75 76 public function ReadString() 76 public function ReadLine() 77 { 78 return(fgets($this->Handle)); 79 } 80 81 public function ReadTextLine() 77 82 { 78 83 return(fgets($this->Handle)); … … 111 116 public function WriteString($Value) 112 117 { 113 fwrite($this->Handle, $Value."\0"); 118 fwrite($this->Handle, $Value); 119 } 120 121 public function WriteLine($Value) 122 { 123 fputs($this->Handle, $Value); 114 124 } 115 125
Note:
See TracChangeset
for help on using the changeset viewer.