编程语言
首页 > 编程语言> > 使用php加速xml解析

使用php加速xml解析

作者:互联网

嗨,我有一个xml文件,其中包含大约12,000条记录.我编写了代码并且工作正常,只需要一段时间来解析xml文件并返回内容.有没有办法加速这个过程?

我的代码:

<?php 
$dom = new DOMDocument(); 
$dom->load('comics.xml'); 
foreach ($dom->getElementsByTagName('record') as $entry) 
{   
$title = $entry->getElementsByTagName('title')->item(0)->textContent;   
echo $title;   

} 
?>

XML文件(只有一个演示在那里不能链接所有大声笑):

<?xml version='1.0' encoding='utf-8'?>
<calibredb>
  <record>
    <id>1</id>
    <uuid>991639a0-7cf6-4a34-a863-4aab8ac2921d</uuid>
    <publisher>Marvel Comics</publisher>
    <size>6109716</size>
    <title sort="Iron Man v1 101">Iron Man v1 101</title>
    <authors sort="Unknown">
      <author>Unknown</author>
    </authors>
    <timestamp>2012-04-15T18:49:22-07:00</timestamp>
    <pubdate>2012-04-15T18:49:22-07:00</pubdate>
    <cover>M:/Comics/Unknown/Iron Man v1 101 (1)/cover.jpg</cover>
    <formats>
      <format>M:/Comics/Unknown/Iron Man v1 101 (1)/Iron Man v1 101 - Unknown.zip</format>
    </formats>
  </record>
  </calibredb>

解决方法:

答案很大程度上取决于数据.一些可能的解决方案是将数据移动到像MySQL这样的关系数据库中,或者将数据规范化为CSV格式,这种格式更容易解析,占用更少的空间,并且可以逐行读取.

标签:php,parsing,xmldom
来源: https://codeday.me/bug/20190630/1332425.html