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
|
<?php
class Opml
{
private $_xml = null;
private $_currentTag = '';
public $title = '';
public $entries = array();
private $map =
array(
'URL' => 'website',
'HTMLURL' => 'website',
'TEXT' => 'name',
'TITLE' => 'name',
'XMLURL' => 'feed',
'DESCRIPTION' => 'description',
'ISDOWN' => 'isDown'
);
public function parse($data)
{
$this->_xml = xml_parser_create('UTF-8');
//xml_parser_set_option($this->_xml, XML_OPTION_CASE_FOLDING, false);
//xml_parser_set_option($this->_xml, XML_OPTION_SKIP_WHITE, true);
xml_set_object($this->_xml, $this);
xml_set_element_handler($this->_xml, '_openTag', '_closeTag');
xml_set_character_data_handler($this->_xml, '_cData');
xml_parse($this->_xml, $data);
xml_parser_free($this->_xml);
return $this->entries;
}
private function _openTag($p, $tag, $attrs)
{
$this->_currentTag = $tag;
if ($tag == 'OUTLINE') {
$i = count($this->entries);
foreach (array_keys($this->map) as $key) {
if (isset($attrs[$key])) {
$this->entries[$i][$this->map[$key]] = $attrs[$key];
}
}
}
}
private function _closeTag($p, $tag)
{
$this->_currentTag = '';
}
private function _cData($p, $cdata)
{
if ($this->_currentTag == 'TITLE') {
$this->title = $cdata;
}
}
public function getTitle()
{
return $this->title;
}
public function getPeople()
{
return $this->entries;
}
}
|