Ejemplo n.º 1
0
 /**
  * Reads a entire file and stores the data in the variable
  * passed by reference.
  *
  * @param    string $file    String. Path and/or name of file to read.
  * @param    object &$rBuffer    Reference. Variable of where to put contents.
  *
  * @return    TRUE on success. Err object on failure.
  * @author  Charlie Killian, charlie@tizac.com
  * @deprecated Use read() or BufferedReader instead.
  */
 public function readInto(&$rBuffer)
 {
     return $this->inStream->readInto($rBuffer);
 }