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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
<?php
class HTMLempty
{
var $_Name = "";
var $_Attribute = array();
function HTMLempty($name)
{
if(preg_match('/^[a-zA-Z.:][\w\-_.:]*$/i', $name))
{
$this->_Name = $name;
}
else
{
trigger_error("Unerlaubter Name für ein HTML-Element : '".$name."'", E_USER_ERROR);
}
}
function addAttribut($name, $wert = NULL)
{
if(isset($wert))
{
$name = (string)$name;
if(preg_match('/^[a-zA-Z.:][\w\-_.:]*$/i', $name))
{
$this->_Attribute[$name] = $wert;
}
else
{
trigger_error("Unerlaubter Name für ein HTML-Attribut : '".$name."'", E_USER_ERROR);
}
}
else
{
if(is_scalar($name))
{
if(preg_match('/^[a-zA-Z.:][\w\-_.:]*$/i', $name))
{
$this->_Attribute[$name] = $name;
}
else
{
trigger_error("Unerlaubter Name für ein HTML-Attribut : '".$name."'", E_USER_ERROR);
}
}
elseif(is_array($name))
{
foreach($name as $key => $wert)
{
if(is_int($key))
{
if(preg_match('/^[a-zA-Z.:][\w\-_.:]*$/i', $wert))
{
$this->_Attribute[$wert] = $wert;
}
else
{
trigger_error("Unerlaubter Name für ein HTML-Attribut : '".$wert."'", E_USER_ERROR);
}
}
else
{
$key = (string)$key;
if(preg_match('/^[a-zA-Z.:][\w\-_.:]*$/i', $key))
{
$this->_Attribute[$key] = $wert;
}
else
{
trigger_error("Unerlaubter Name für ein HTML-Attribut : '".$key."'", E_USER_ERROR);
}
}
}
}
else
{
trigger_error("Erster Parameter muss ein Scalar oder ein Array sein", E_USER_ERROR);
}
}
}
function getName()
{
return $this->_Name;
}
function getAttribut()
{
return $this->_Attribute;
}
function ausgeben($indent = 0)
{
$str = str_repeat(' ', $indent);
$str .= "<".$this->getName();
$attrib = $this->getAttribut();
foreach($attrib as $name => $value)
{
$str .= ' '.$name.'="'.htmlspecialchars($value).'"';
}
$str .= " />\n";
echo($str);
}
}
?> |