2011-12-23 91 views
0
<?xml version="1.0"?> 
<order> 
<order_businessid>2</order_businessid> 
<order_categoryid>3</order_categoryid> 

<product_id>1</product_id> 
<product_name1>CreamCheese Cake</product_name1> 
<product_price1>4.10</product_price1> 
<product_Qty1>1</product_Qty1> 

<product_id>3</product_id> 
<product_name2>Gujarati unlimited</product_name2> 
<product_price2>50.00</product_price2> 
<product_Qty2>1</product_Qty2> 

<product_id>5</product_id> 
<product_name3>Cheese French Frish</product_name3> 
<product_price3>4.10</product_price3> 
<product_Qty3>1</product_Qty3> 
</order> 

如何讀取這個結構?在PHP中閱讀這個XML結構

我想在PHP中輸出:

ProduktID 1, has name CreamCheese Cake and it's price is 4.10 
ProduktID 3, has name Gujarati unlimited and it's price is 50.00 

等..

我知道如何通過元素做到這一點,如果所有信息是一個元素裏面,然後我只想循環,獲取屬性和輸出。

但是有了這個,我不知道在所有的,所以希望你能幫助我..

+0

這是一些很糟糕XML。使用相同的名稱和組合元素。不要舉例,product_name3?只需使用名稱,並將所有產品數據作爲單個產品元素下的元素/屬性進行分組。 – 2011-12-23 15:03:22

+0

這樣的XML來自開發人員,他們使用字符串創建XML,而不是DOM方法。只是因爲它裏面有<>標籤並沒有使它成爲XML。 – 2011-12-23 15:05:03

回答

2

XML的結構非常差 - 使訂單上的每個產品都具有正確的結構將使這變得更容易。

但這個工作(使用SimpleXML):

$myxml = '<?xml version="1.0"?> 
<order> 
<order_businessid>2</order_businessid> 
<order_categoryid>3</order_categoryid> 

<product_id>1</product_id> 
<product_name1>CreamCheese Cake</product_name1> 
<product_price1>4.10</product_price1> 
<product_Qty1>1</product_Qty1> 

<product_id>3</product_id> 
<product_name2>Gujarati unlimited</product_name2> 
<product_price2>50.00</product_price2> 
<product_Qty2>1</product_Qty2> 

<product_id>5</product_id> 
<product_name3>Cheese French Frish</product_name3> 
<product_price3>4.10</product_price3> 
<product_Qty3>1</product_Qty3> 
</order>'; 


$xml = simplexml_load_string($myxml); 
$count=1; 
foreach ($xml->product_id as $prod) { 
$pn = $xml->xpath('/order/product_name'.$count); 
$price = $xml->xpath('/order/product_price'.$count); 
$pq = $xml->xpath('/order/product_Qty'.$count); 

echo "ProduktID $prod, has name $pn[0] and it's price is $price[0] and exists $pq[0] time(s)".PHP_EOL; 
$count++; 
} 

工作例如:http://codepad.org/R00NJhOr

0

埃姆...說實話?有開發人員稱這是一個XML結構? xD

有幾種方法來處理這種廢話。我喜歡的正則表達式:

這應該符合你的要求:

/.*?<product_id>(.*?)<\/product_id>.*?<product_name\d*>(.*?)<\/product_name\d*>.*?<product_price\d*>(.*?)<\/product_price\d*>.*?<product_Qty\d*>(.*?)<\/product_Qty\d*>.*/s 

ProduktID $1, has name $2 and it's price is $3 and exists $4 time(s).\n 

這應該與preg_match_all工作,但它是未經測試!

此致敬禮!

+0

我同意你的意見,但我無能爲力。 XML結構是由應用程序開發人員製作的 – Karem 2011-12-23 12:39:51

0

下面是使用DOMDocument一個解決方案:

$doc = new DOMDocument(); 

$doc->load("order.xml"); 

$productList = array(); 

foreach($doc->documentElement->childNodes as $node) { 
    if($node->tagName == "product_id") { 
     $productList[] = array(
      "id" => $node->textContent, 
     ); 
    } 

    if(preg_match("/product_([A-Za-z_]+)(\d+)/", $node->tagName, $m)) { 
     $productList[$m[2] - 1][$m[1]] = $node->textContent; 
    } 
} 

foreach($productList as $product) { 
    echo "ProduktID ", $product["id"] 
     , ", has name ", $product["name"] 
     , " and it's price is ", $product["price"] 
     , " with quantity ", $product["Qty"] 
     , "\n"; 
} 

當然,這XML看起來非常奇怪的(所以我分享@阿明的情緒)。它看起來像是「手工製作的」,沒有那些奇特的XML工具/庫中的一個,而是使用字符串連接或僅使用echo進行渲染。

1

這將解決你的問題,但我不會喜歡這種XML格式

$xmlStr = '<?xml version="1.0"?> 
<order> 
<order_businessid>2</order_businessid> 
<order_categoryid>3</order_categoryid> 

<product_id>1</product_id> 
<product_name1>CreamCheese Cake</product_name1> 
<product_price1>4.10</product_price1> 
<product_Qty1>1</product_Qty1> 

<product_id>3</product_id> 
<product_name2>Gujarati unlimited</product_name2> 
<product_price2>50.00</product_price2> 
<product_Qty2>1</product_Qty2> 

<product_id>5</product_id> 
<product_name3>Cheese French Frish</product_name3> 
<product_price3>4.10</product_price3> 
<product_Qty3>1</product_Qty3> 
</order>'; 

$xml = simplexml_load_string($xmlStr); 

$pid = $pnam = $ppric = ''; 
foreach($xml as $ky=>$node) { 
    $pid = ($ky == 'product_id') ? $node[0] : $pid ; 
    $pnam = (strpos($ky, 'product_name') === 0) ? $node[0] : $pnam; 
    $ppric = (strpos($ky, 'product_price') === 0) ? $node[0] : $ppric; 

    if(strpos($ky, 'product_price') === 0) { 
     echo "product id $pid has name $pnam and its price is $ppric <br>"; 
    } 
}