Platform
3.1
PHP API documentation
Main Page
Related Pages
Namespaces
Data Structures
Files
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
* @license http://creativecommons.org/licenses/by-nc-sa/2.0/fr/ Anakeen - licence CC
5
* @package FDL
6
*/
7
/**
8
* Generated Header (not documented yet)
9
*
10
* @author Anakeen 2000
11
* @version $Id: Class.Out.php,v 1.2 2003/08/18 15:46:42 eric Exp $
12
* @license http://creativecommons.org/licenses/by-nc-sa/2.0/fr/ Anakeen - licence CC
13
* @package FDL
14
* @subpackage CORE
15
*/
16
/**
17
*/
18
// --------------------------------------------------------------------------
19
// $Id: Class.Out.php,v 1.2 2003/08/18 15:46:42 eric Exp $
20
// anakeen 1999 - marc.claverie@anakeen.com
21
// --------------------------------------------------------------------------
22
//
23
// $Log: Class.Out.php,v $
24
// Revision 1.2 2003/08/18 15:46:42 eric
25
// phpdoc
26
//
27
// Revision 1.1 2002/01/08 12:41:34 eric
28
// first
29
//
30
// Revision 1.1 2001/02/10 09:45:51 yannick
31
// Ajout de vieilles classes
32
//
33
// Revision 1.2 1999/12/01 20:42:39 marc
34
// Version 1.0 qui semble marcher
35
//
36
// Revision 1.1 1999/12/01 20:22:19 marc
37
// Creation
38
//
39
// --------------------------------------------------------------------------
40
$CLASS_OUT_PHP
=
""
;
41
42
class
Out
43
{
44
45
var
$stream
;
46
var
$cr
;
47
48
function
Out
($rt = 0)
49
{
50
$this->stream =
""
;
51
if
($rt) $this->cr =
"\n"
;
52
else
$this->cr =
""
;
53
}
54
55
function
Cat
($string)
56
{
57
$this->stream = $this->stream . $string .
$this->cr
;
58
}
59
function
Reset
()
60
{
61
$this->stream =
""
;
62
}
63
64
function
Flush
()
65
{
66
return
($this->stream);
67
}
68
}
69
?>
← centre documentaire
© anakeen
- published under
CC License
-
Dynacase