用LOC从php解析xml

时间:2016-08-28 18:07:33

标签: php xml

我对XML有些新意,我正在试图弄清楚如何解析LOC API文件。

到目前为止,我已经:

$url = "http://lx2.loc.gov:210/lcdb?version=1.1&operation=searchRetrieve&query=bath.isbn=[0072424346]&maximumRecords=1&recordSchema=mods";

$string = file_get_contents($url);
$xml = new SimpleXMLElement($string);

我在创建SimpleXMLElement对象时没有收到任何信息,我使用了var_dump($xml)

获取:object(SimpleXMLElement)#1 (0) { }

哪个是空容器,有什么建议吗?

0 个答案:

没有答案