php中xml在线解析,PHP解析xml格式数据工具类示例

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

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]['tag'];

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

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

switch ($this->_struct[$i]['type']) {

case 'open':

// 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 'complete':

// at end of current branch

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

break;

case 'cdata':

// node has CDATA after one of it's children

$children['value'] .= $value;

break;

case 'close':

// 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 = '', $attributes = '', $child = '') {

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

if ($child != '') {

$target[$key] = $child;

}

if ($attributes != '') {

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

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

}

}

$target[$key]['value'] = $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 != '') {

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

}

if ($attributes != '') {

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

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

}

}

$target[$key][$index]['value'] = $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);

}

}

}

PS:这里再为大家提供几款关于xml操作的在线工具供大家参考使用:

希望本文所述对大家PHP程序设计有所帮助。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,关于 Android XML 解析工具类,可以使用 Android 提供的 XmlPullParser 类来解析 XML 文件。XmlPullParser 是 Android 系统提供的一个轻量级的解析器,用于解析 XML 文件。 下面是一个简单的示例代码,展示如何使用 XmlPullParser 来解析 XML 文件: ```java public static List<Entry> parse(InputStream is) throws XmlPullParserException, IOException { List<Entry> entries = new ArrayList<>(); XmlPullParser parser = Xml.newPullParser(); parser.setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, false); parser.setInput(is, null); int eventType = parser.getEventType(); Entry currentEntry = null; while (eventType != XmlPullParser.END_DOCUMENT) { String name = parser.getName(); switch (eventType) { case XmlPullParser.START_TAG: if (name.equals("entry")) { currentEntry = new Entry(); } else if (currentEntry != null) { if (name.equals("title")) { currentEntry.setTitle(parser.nextText()); } else if (name.equals("link")) { currentEntry.setLink(parser.nextText()); } else if (name.equals("description")) { currentEntry.setDescription(parser.nextText()); } else if (name.equals("pubDate")) { currentEntry.setPubDate(parser.nextText()); } } break; case XmlPullParser.END_TAG: if (name.equals("entry") && currentEntry != null) { entries.add(currentEntry); } break; } eventType = parser.next(); } return entries; } ``` 在这个示例,我们使用 XmlPullParser 解析 XML 文件,并将每个 entry 元素解析为一个 Entry 对象。在解析过程,我们使用了 XmlPullParser 的一些方法,例如 parser.getEventType()、parser.getName()、parser.nextText() 等。 希望这个示例代码能够帮助你了解如何使用 XmlPullParser 类来解析 XML 文件。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值