作者NelsonT (有人要 GMail 吗?)
看板PHP
标题Re: [请益] 如何用 PHP 处理 XML
时间Thu Sep 22 01:19:08 2005
: 你用的是PHP的XML Parser Functions吗?是的话,可以设定忽略XML资料
: 中的空白字元(tab, 空白以及换行字元都包含在内):
: $xml_parser = xml_parser_create();
: // 忽略空白字元
: xml_parser_set_option($xml_parser, XML_OPTION_SKIP_WHITE, 1);
: ......
我用的是 domxml_open_file 来读取 xml 档哩
$doc = domxml_open_file($xml_file)
$root = $doc->document_element();
$children = $root->child_nodes();
这样有什麽好解法吗?
或是用 xml_parser_create 要怎麽操纵 xml 档呢?
--
╭─────专门介绍免费软体的网页────────╮
│
http://www.csie.nctu.edu.tw/~chtai/software.php │
╰────────────────────────╯
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 210.64.151.126