| D | Write.php | 121 public function write($string, $length) function in Hoa\\File\\Temporary\\Write 144 return $this->write($string, strlen($string)); 155 return $this->write((string) $char[0], 1); 166 return $this->write((string) (bool) $boolean, 1); 179 return $this->write($integer, strlen($integer)); 192 return $this->write($float, strlen($float)); 205 return $this->write($array, strlen($array)); 217 return $this->write($line . "\n", strlen($line) + 1); 222 return $this->write(substr($line, 0, $n), $n); 233 return $this->write($string, strlen($string));
|