From 6845c00a3f752abecd9ef763848329bceaf63df4 Mon Sep 17 00:00:00 2001 From: xue <> Date: Fri, 31 Mar 2006 12:42:22 +0000 Subject: Reorganized folders under framework. This may break existing applications. --- framework/IO/TTextWriter.php | 60 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 framework/IO/TTextWriter.php (limited to 'framework/IO/TTextWriter.php') diff --git a/framework/IO/TTextWriter.php b/framework/IO/TTextWriter.php new file mode 100644 index 00000000..a6bf5751 --- /dev/null +++ b/framework/IO/TTextWriter.php @@ -0,0 +1,60 @@ + + * @link http://www.pradosoft.com/ + * @copyright Copyright © 2005 PradoSoft + * @license http://www.pradosoft.com/license/ + * @version $Revision: $ $Date: $ + * @package System.IO + */ + +/** + * TTextWriter class. + * + * TTextWriter implements a memory-based text writer. + * Content written by TTextWriter are stored in memory + * and can be obtained by calling {@link flush()}. + * + * @author Qiang Xue + * @version $Revision: $ $Date: $ + * @package System + * @since 3.0 + */ +class TTextWriter extends TComponent implements ITextWriter +{ + private $_str=''; + + /** + * Flushes the content that has been written. + * @return string the content being flushed + */ + public function flush() + { + $str=$this->_str; + $this->_str=''; + return $str; + } + + /** + * Writes a string. + * @param string string to be written + */ + public function write($str) + { + $this->_str.=$str; + } + + /** + * Writers a string and terminates it with a newline. + * @param string content to be written + * @see write + */ + public function writeLine($str='') + { + $this->write($str."\n"); + } +} + +?> \ No newline at end of file -- cgit v1.2.3