首页 > web前端 > js教程 > PHP解析xml格式数据工具类实例分享

PHP解析xml格式数据工具类实例分享

小云云
发布: 2018-01-09 09:41:22
原创
1531 人浏览过

本文主要介绍了PHP解析xml格式数据工具类,涉及php针对xml格式数据节点添加、获取、解析等相关操作技巧,需要的朋友可以参考下,希望能帮助到大家。

本文实例讲述了PHP解析xml格式数据工具类。分享给大家供大家参考,具体如下:


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

class ome_xml {

  /**

  * xml资源

  *

  * @var    resource

  * @see    xml_parser_create()

  */

  public $parser;

  /**

  * 资源编码

  *

  * @var    string

  */

  public $srcenc;

  /**

  * target encoding

  *

  * @var    string

  */

  public $dstenc;

  /**

  * the original struct

  *

  * @access  private

  * @var    array

  */

  public $_struct = array();

  /**

  * Constructor

  *

  * @access    public

  * @param    mixed    [$srcenc] source encoding

  * @param    mixed    [$dstenc] target encoding

  * @return    void

  * @since

  */

  function SofeeXmlParser($srcenc = null, $dstenc = null) {

    $this->srcenc = $srcenc;

    $this->dstenc = $dstenc;

    // initialize the variable.

    $this->parser = null;

    $this->_struct = array();

  }

  /**

  * Parses the XML file

  *

  * @access    public

  * @param    string    [$file] the XML file name

  * @return    void

  * @since

  */

  function xml2array($file) {

    //$this->SofeeXmlParser('utf-8');

  $data = file_get_contents($file);

    $this->parseString($data);

    return $this->getTree();

  }

  function xml3array($file){

  $data = file_get_contents($file);

  $this->parseString($data);

  return $this->_struct;

  }

  /**

  * Parses a string.

  *

  * @access    public

  * @param    string    data XML data

  * @return    void

  */

  function parseString($data) {

    if ($this->srcenc === null) {

      $this->parser = xml_parser_create();

    } else {

      if($this->parser = xml_parser_create($this->srcenc)) {

        return 'Unable to create XML parser resource with '. $this->srcenc .' encoding.';

      }

    }

    if ($this->dstenc !== null) {

      @xml_parser_set_option($this->parser, XML_OPTION_TARGET_ENCODING, $this->dstenc) or die('Invalid target encoding');

    }

    xml_parser_set_option($this->parser, XML_OPTION_CASE_FOLDING, 0);  // lowercase tags

    xml_parser_set_option($this->parser, XML_OPTION_SKIP_WHITE, 1);    // skip empty tags

    if (!xml_parse_into_struct($this->parser, $data, $this->_struct)) {

      /*printf("XML error: %s at line %d",

          xml_error_string(xml_get_error_code($this->parser)),

          xml_get_current_line_number($this->parser)

      );*/

      $this->free();

      return false;

    }

    $this->_count = count($this->_struct);

    $this->free();

  }

  /**

  * return the data struction

  *

  * @access    public

  * @return    array

  */

  function getTree() {

    $i = 0;

    $tree = array();

    $tree = $this->addNode(

      $tree,

      $this->_struct[$i]['tag'],

      (isset($this->_struct[$i]['value'])) ? $this->_struct[$i]['value'] : '',

      (isset($this->_struct[$i]['attributes'])) ? $this->_struct[$i]['attributes'] : '',

      $this->getChild($i)

    );

    unset($this->_struct);

    return $tree;

  }

  /**

  * recursion the children node data

  *

  * @access    public

  * @param    integer    [$i] the last struct index

  * @return    array

  */

  function getChild(&$i) {

    // contain node data

    $children = array();

    // loop

    while (++$i < $this->_count) {

      // node tag name

      $tagname = $this->_struct[$i][&#39;tag&#39;];

      $value = isset($this->_struct[$i][&#39;value&#39;]) ? $this->_struct[$i][&#39;value&#39;] : &#39;&#39;;

      $attributes = isset($this->_struct[$i][&#39;attributes&#39;]) ? $this->_struct[$i][&#39;attributes&#39;] : &#39;&#39;;

      switch ($this->_struct[$i][&#39;type&#39;]) {

        case &#39;open&#39;:

          // node has more children

          $child = $this->getChild($i);

          // append the children data to the current node

          $children = $this->addNode($children, $tagname, $value, $attributes, $child);

          break;

        case &#39;complete&#39;:

          // at end of current branch

          $children = $this->addNode($children, $tagname, $value, $attributes);

          break;

        case &#39;cdata&#39;:

          // node has CDATA after one of it&#39;s children

          $children[&#39;value&#39;] .= $value;

          break;

        case &#39;close&#39;:

          // end of node, return collected data

          return $children;

          break;

      }

    }

    //return $children;

  }

  /**

  * Appends some values to an array

  *

  * @access    public

  * @param    array    [$target]

  * @param    string    [$key]

  * @param    string    [$value]

  * @param    array    [$attributes]

  * @param    array    [$inner] the children

  * @return    void

  * @since

  */

  function addNode($target, $key, $value = &#39;&#39;, $attributes = &#39;&#39;, $child = &#39;&#39;) {

    if (!isset($target[$key][&#39;value&#39;]) && !isset($target[$key][0])) {

      if ($child != &#39;&#39;) {

        $target[$key] = $child;

      }

      if ($attributes != &#39;&#39;) {

        foreach ($attributes as $k => $v) {

          $target[$key][$k] = $v;

        }

      }

      $target[$key][&#39;value&#39;] = $value;

    } else {

      if (!isset($target[$key][0])) {

        // is string or other

        $oldvalue = $target[$key];

        $target[$key] = array();

        $target[$key][0] = $oldvalue;

        $index = 1;

      } else {

        // is array

        $index = count($target[$key]);

      }

      if ($child != &#39;&#39;) {

        $target[$key][$index] = $child;

      }

      if ($attributes != &#39;&#39;) {

        foreach ($attributes as $k => $v) {

          $target[$key][$index][$k] = $v;

        }

      }

      $target[$key][$index][&#39;value&#39;] = $value;

    }

    return $target;

  }

  /**

  * Free the resources

  *

  * @access    public

  * @return    void

  **/

  function free() {

    if (isset($this->parser) && is_resource($this->parser)) {

      xml_parser_free($this->parser);

      unset($this->parser);

    }

  }

登录后复制

相关推荐:

详解PHP对xml文件增删改查

php实现输出xml属性

java将XML文档转换成json格式数据

以上是PHP解析xml格式数据工具类实例分享的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板