Core
3.2
PHP API documentation
Main Page
Related Pages
Namespaces
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Pages
Class.Out.php
Go to the documentation of this file.
1
<?php
2
/*
3
* @author Anakeen
4
* @package FDL
5
*/
6
/**
7
* Generated Header (not documented yet)
8
*
9
* @author Anakeen
10
* @version $Id: Class.Out.php,v 1.2 2003/08/18 15:46:42 eric Exp $
11
* @package FDL
12
* @subpackage CORE
13
*/
14
/**
15
*/
16
// --------------------------------------------------------------------------
17
// $Id: Class.Out.php,v 1.2 2003/08/18 15:46:42 eric Exp $
18
// anakeen 1999 - marc.claverie@anakeen.com
19
// --------------------------------------------------------------------------
20
//
21
// $Log: Class.Out.php,v $
22
// Revision 1.2 2003/08/18 15:46:42 eric
23
// phpdoc
24
//
25
// Revision 1.1 2002/01/08 12:41:34 eric
26
// first
27
//
28
// Revision 1.1 2001/02/10 09:45:51 yannick
29
// Ajout de vieilles classes
30
//
31
// Revision 1.2 1999/12/01 20:42:39 marc
32
// Version 1.0 qui semble marcher
33
//
34
// Revision 1.1 1999/12/01 20:22:19 marc
35
// Creation
36
//
37
// --------------------------------------------------------------------------
38
$CLASS_OUT_PHP
=
""
;
39
40
class
Out
41
{
42
43
var
$stream
;
44
var
$cr
;
45
46
function
Out
($rt = 0)
47
{
48
$this->stream =
""
;
49
if
($rt) $this->cr =
"\n"
;
50
else
$this->cr =
""
;
51
}
52
53
function
Cat
($string)
54
{
55
$this->stream = $this->stream . $string .
$this->cr
;
56
}
57
function
Reset
()
58
{
59
$this->stream =
""
;
60
}
61
62
function
Flush
()
63
{
64
return
($this->stream);
65
}
66
}
67
?>
Out
Definition:
Class.Out.php:40
Out\Out
Out($rt=0)
Definition:
Class.Out.php:46
Out\$cr
$cr
Definition:
Class.Out.php:44
$CLASS_OUT_PHP
$CLASS_OUT_PHP
Definition:
Class.Out.php:38
Out\Cat
Cat($string)
Definition:
Class.Out.php:53
Out\Reset
Reset()
Definition:
Class.Out.php:57
Out\Flush
Flush()
Definition:
Class.Out.php:62
Out\$stream
$stream
Definition:
Class.Out.php:43
← centre documentaire
© anakeen