summaryrefslogtreecommitdiff
path: root/framework/IO/TTextWriter.php
blob: f888083d7e44dd58a9a75c4f19d31407a491f535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/**
 * TTextWriter class file
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @link http://www.pradosoft.com/
 * @copyright Copyright &copy; 2005-2014 PradoSoft
 * @license http://www.pradosoft.com/license/
 * @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 <qiang.xue@gmail.com>
 * @package System.IO
 * @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");
	}
}