Open($path, $mode); } /** * Append target file's content to current file * * @param string $file_name Path of target file * @return void */ function append($file_name) { $target = new FileObject($file_name, "r"); while(!$target->feof()) { $readstr = $target->read(); $this->write($readstr); } $target->close(); } /** * Check current file meets eof * * @return bool true: if eof. false: otherwise */ function feof() { return feof($this->fp); } /** * Read from current file * * @param int $size Size to read * @return string Returns the read string or false on failure. */ function read($size = 1024) { return fread($this->fp, $size); } /** * Write string to current file * * @param string $str String to write * @return int Returns the number of bytes written, or false on error. */ function write($str) { $len = strlen($str); if(!$str || $len <= 0) return false; if(!$this->fp) return false; $written = fwrite($this->fp, $str); return $written; } /** * Open a file * * If file is opened, close it and open the new path * * @param string $path Path of target file * @param string $mode File open mode (http://php.net/manual/en/function.fopen.php) * @return bool true if succeed, false otherwise. */ function open($path, $mode) { if($this->fp != null) { $this->close(); } $this->fp = fopen($path, $mode); if(! is_resource($this->fp) ) { $this->fp = null; return false; } $this->path = $path; return true; } /** * Return current file's path * * @return string Returns the path of current file. */ function getPath() { if($this->fp != null) { return $this->path; } else { return null; } } /** * Close file * * @return void */ function close() { if($this->fp != null) { fclose($this->fp); $this->fp = null; } } } /* End of file FileObject.class.php */ /* Location: ./classes/file/FileObject.class.php */