27 function __construct($name, $attributes = array())
30 $this->attributes = $attributes;
39 $this->attributes[$name] = $value;
42 function getOpeningText()
44 $openingText =
"<" . $this->name;
45 foreach ($this->attributes as $name => $value) {
46 $openingText .=
" $name=\"$value\"";
48 return $openingText .
">";
51 function getClosingText()
53 return "</$this->name>";
setAttribute($name, $value)