這裏是我想分析 頁面(API的鏈接我給的只是一個開發測試,以便其確定爲public) http://api.scribd.com/api?method=docs.getList&api_key=2apz5npsqin3cjlbj0s6m我該如何解析一個xml頁面來輸出它的數據到我想要的方式?
輸出即時尋找的是這樣的(現在)
Doc_id: 29638658
access_key: key-11fg37gwmer54ssq56l3
secret_password: 1trinfqri6cnv3gf6rnl
title: Sample
description: k
thumbnail_url: http://i6.scribdassets.com/public/images/uploaded/152418747/xTkjCwQaGf_thumbnail.jpeg
page_count: 100
我嘗試了一切,我可以在互聯網上找到,但沒有什麼效果。我有這樣的一個腳本
<?php
$xmlDoc = new DOMDocument();
$xmlDoc->load("http://api.scribd.com/api?method=docs.getList&api_key=2apz5npsqin3cjlbj0s6m");
$x = $xmlDoc->documentElement;
foreach ($x->childNodes AS $item) {
print $item->nodeName . " = " . $item->nodeValue;
}
?>
其輸出出來是這樣的:
#text =
resultset =
29638658
key-11fg37gwmer54ssq56l3
1trinfqri6cnv3gf6rnl
Sample
k
http://i6.scribdassets.com/public/images/uploaded/152418747/xTkjCwQaGf_thumbnail.jpeg
DONE
100
29713260
key-18a9xret4jf02129vlw8
25fjsmmvl62l4cbwd1vq
book2
description bla bla
http://i6.scribdassets.com/public/images/uploaded/153065528/oLVqPZMu3zhsOn_thumbnail.jpeg
DONE
7
#text =
我需要重點扶持的IM真的卡住,不知道該怎麼辦。請請幫助我。 thnx
轉發http:// stack overflow.com/questions/2611998/trying-to-parse-an-xml-from-a-url-and-it-wont-work 用戶說「please please help」的另一個例子,但甚至沒有迴應他們以前的答案。 – 2010-04-11 00:37:47