我已经成功地获得了 xml 格式的 pubmed 结果页面并将内容写入本地文件“Publications.xml”。问题是当我使用 simplexml_load_file("Publications.xml") 时,它失败了。无法弄清楚为什么。
<?php
$feed = 'http://www.ncbi.nlm.nih.gov/pubmed?term=carl&sort=pubdate&report=xml';
$local = 'Publications.xml';
$curtime = time();
$filemodtime;
if( (!file_exists($local)) || (time() - filemtime($local)) > 86400 )
{
$contents = file_get_contents($feed);
$fp = fopen($local,"w");
fwrite($fp, $contents);
fclose($fp);
}
$xml = simplexml_load_file($local) or ("Can't");
?>
在最后但第二行,解析器失败,我收到消息“不能”。我已经仔细检查了 xml 文件,它看起来状态良好。
如果有人可以让我知道这个的任何解决方法,我将非常感激。这是上面 PHP 脚本尝试读取的 xml 文件的副本 ( http://pastebin.com/U0fEKmZL ):
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<pre>
<PubmedArticle>
<MedlineCitation Status="Publisher" Owner="NLM">
<PMID Version="1">23314841</PMID>
<DateCreated>
<Year>2013</Year>
<Month>1</Month>
<Day>14</Day>
</DateCreated>
<Article PubModel="Print-Electronic">
<Journal>
<ISSN IssnType="Electronic">1432-0932</ISSN>
<JournalIssue CitedMedium="Internet">
<PubDate>
<Year>2013</Year>
<Month>Jan</Month>
<Day>12</Day>
</PubDate>
... (too long, see link)