-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimpleXML.php
211 lines (203 loc) · 6.32 KB
/
SimpleXML.php
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<?php
/**
* This file is part of the Zimbra API in PHP library.
*
* © Nguyen Van Nguyen <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Zimbra\Common;
use \SimpleXMLElement;
/**
* SimpleXML class
*
* @package Zimbra
* @category Common
* @author Nguyen Van Nguyen - [email protected]
* @copyright Copyright © 2013 by Nguyen Van Nguyen.
*/
class SimpleXML extends SimpleXMLElement
{
/**
* Convert SimpleXML object to stdClass object.
*
* @return object
*/
public function toObject()
{
$attributes = $this->attributes();
$children = $this->children();
$textValue = trim((string) $this);
if(count($attributes) === 0 and count($children) === 0)
{
return $textValue;
}
else
{
$object = new \StdClass;
foreach($attributes as $key => $value)
{
$object->$key = (string)$value;
}
if(!empty($textValue))
{
$object->_ = $textValue;
}
foreach($children as $value)
{
$name = $value->getName();
if(isset($object->$name))
{
if(is_array($object->$name))
{
array_push($object->$name, $value->toObject());
}
else
{
$object->$name = [$object->$name, $value->toObject()];
}
}
else
{
$object->$name = $value->toObject();
}
}
return $object;
}
}
/**
* Append xml.
*
* @param SimpleXML $xml.
* @return self
*/
public function append(SimpleXML $xml, $namespace = null)
{
$value = trim((string) $xml);
$namespaces = array_values($xml->getNamespaces());
if(isset($namespaces[0]))
{
$namespace = $namespaces[0];
}
$newChild = $this->addChild($xml->getName(), !empty($value) ? $value : null, $namespace);
foreach($xml->attributes() as $name => $value)
{
$newChild->addAttribute($name, $value);
}
foreach($xml->children() as $child)
{
$newChild->append($child, $namespace);
}
return $this;
}
/**
* Add an array to xml.
*
* @param array $array.
* @param string $namespace.
* @return void
*/
public function addArray(array $array = [], $namespace = null)
{
foreach ($array as $name => $param)
{
if (is_array($param) and Text::isValidTagName($name))
{
$textValue = null;
if(isset($param['_']))
{
$textValue = $param['_'];
unset($param['_']);
}
if(is_numeric(key($param)))
{
foreach($param as $value)
{
if(is_array($value))
{
$this->addArray([$name => $value]);
}
else
{
$this->addChild($name, Text::boolToString($value), $namespace);
}
}
}
else
{
$child = $this->addChild($name, Text::boolToString($textValue), $namespace);
foreach($param as $key => $value)
{
if(!Text::isValidTagName($key))
{
throw new Exception('Illegal character in tag name. tag: '.$key);
}
if(is_array($value))
{
if(is_numeric(key($value)))
{
foreach($value as $k => $v)
{
if(is_array($v))
{
$child->addArray([$key => $v]);
}
else
{
$child->addChild($key, Text::boolToString($v), $namespace);
}
}
}
else
{
$child->addArray([$key => $value]);
}
}
else
{
$child->addAttribute($key, Text::boolToString($value));
}
}
}
}
else
{
if(!Text::isValidTagName($name))
{
throw new Exception('Illegal character in tag name. tag: '.$name);
}
$this->addChild($name, Text::boolToString($param), $namespace);
}
}
return $this;
}
/**
* Adds an attribute to the SimpleXML element.
*
* @param string $name The name of the attribute to add.
* @param string $value The value of the attribute.
* @param string $namespace If specified, the namespace to which the attribute belongs.
* @return self
*/
public function addAttribute($name, $value = null, $namespace = null)
{
parent::addAttribute($name, $value, $namespace);
return $this;
}
/**
* Adds an array of attributes to the SimpleXML element.
*
* @param array $attrs The array of attributes.
* @param string $namespace If specified, the namespace to which the attribute belongs.
* @return self
*/
public function addAttributes(array $attrs = array(), $namespace = null)
{
foreach ($attrs as $name => $value)
{
parent::addAttribute($name, $value, $namespace);
}
return $this;
}
}