PHP ile XML sonuçlarını kategorilere

0 Cevap php

Ben şu anda bazı kuruluş besleyebilir birkaç web siteleri geliştiriyorum bazı sayfalara besleniyor. Ikilem kendi kategorisi / kategori id bağlı olarak belirli ürünlerde beslemek mümkün ediliyor. Bu dosyalar bu yüzden ben bunu hakkında gitmek ve kullanmak benim için en iyi çözüm nedir nasıl merak edildi, nispeten büyük olacak?

Ben kullanılan gerçek XML ne bir pasajı ekledi:

<?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE merchantProductFeed SYSTEM "http://www.affiliatewindow.com/DTD/affiliate/datafeed.1.3.dtd">
    <merchantProductFeed>
    <merchant id="1092" name="A W Rust Leather Wear">

    <prod id="1834255">
        <pId>AWR3577</pId>
        <text>
            <name>MENS LEATHER BOX JACKET &amp;#39;ALEXANDER&amp;#39;</name>
            <desc>&gt; Unbranded mens box jacket made from soft napa leather.  &gt; Lightly quilted  &gt; Approximate length is 32&amp;quot; / 81 cm  &gt; Very easy to wipe clean</desc>
        </text>
        <uri>
            <awTrack>http://www.awin1.com/pclick.php?p=1834255&amp;a=75208&amp;m=1092</awTrack>
            <awImage>http://images.productserve.com/preview/1092/1834255.jpg</awImage>
            <mLink>http://www.awrust.co.uk/index.cfm?fuseaction=browse.showitem&amp;colour_id=3577&amp;partnerid=affwin&amp;cs=e75c91a3</mLink>
            <mImage>http://www.awrust.co.uk/_uploads/productimages/thumbnails/3577t.jpg</mImage>
        </uri>
        <price>
            <buynow>105.99</buynow>
            <rrp>0.00</rrp>
            <delivery>0.00</delivery>
        </price>
        <cat>
            <awCatId>171</awCatId>
            <awCat>Men's Outerwear</awCat>
            <mCat>Men&amp;#39;s Leather &gt; Leather Jackets</mCat>
        </cat>
        <brand>
            <brandName>A W Rust</brandName>
        </brand>
    </prod>

    <prod id="1834252">
        <pId>AWR3577</pId>
        <text>
            <name>MENS LEATHER BOX JACKET2 &amp;#39;ALEXANDER&amp;#39;</name>
            <desc>&gt; Unbranded mens box jacket made from soft napa leather.  &gt; Lightly quilted  &gt; Approximate length is 32&amp;quot; / 81 cm  &gt; Very easy to wipe clean</desc>
        </text>
        <uri>
            <awTrack>http://www.awin1.com/pclick.php?p=1834255&amp;a=75208&amp;m=1092</awTrack>
            <awImage>http://images.productserve.com/preview/1092/1834255.jpg</awImage>
            <mLink>http://www.awrust.co.uk/index.cfm?fuseaction=browse.showitem&amp;colour_id=3577&amp;partnerid=affwin&amp;cs=e75c91a3</mLink>
            <mImage>http://www.awrust.co.uk/_uploads/productimages/thumbnails/3577t.jpg</mImage>
        </uri>
        <price>
            <buynow>105.99</buynow>
            <rrp>0.00</rrp>
            <delivery>0.00</delivery>
        </price>
        <cat>
            <awCatId>171</awCatId>
            <awCat>Men's Outerwear</awCat>
            <mCat>Men&amp;#39;s Leather &gt; Leather Jackets</mCat>
        </cat>
        <brand>
            <brandName>A W Rust</brandName>
        </brand>
    </prod>

    </merchant>
    </merchantProductFeed>

Bu dosyalar bu dosyalar muhafaza ve güncelleştirilmiş olsun zaman çözüm sonu yok ki onun hayati bir üçüncü parti tarafından düzenli olarak değişti, bu yüzden olacak.

Şerefe!

0 Cevap