Nasıl SimpleXML ile XML yem sıralamak için

2 Cevap php

I have started to use the simplexml function that seems to work out better than the previous other parser that I have tried to use. I have got to the stage where I need to the sort the items by transmissiondate - I tried using the uasort but does not make any changes the order of the items.

Ayrıca bazı zamanlar bir program aynı gün birden fazla üzerinde - herhangi bir yardım olabilir videoID sortby daha kolay olurdu?

Bu nesne göründüğünü gibi:

[0] => SimpleXMLElement Object
    (
        [VideoID] => 108059
        [Genre] => Music
        [ProgrammeName] => MTV
        [OriginalAiringDate] => 2009-11-10T19:22:24
        [TransmissionDate] => 2009-11-10T19:22:24
   )
[1] => SimpleXMLElement Object
    (
        [VideoID] => 108395
        [ExpiryDate] => 2009-12-12T23:59:59
        [DateCreated] => 2009-11-12T13:28:54
        [Genre] => Music
        [ProgrammeName] => MTV
        [OriginalAiringDate] => 2009-11-12T19:22:32
        [TransmissionDate] => 2009-11-12T19:22:32
 )

$xml = simplexml_load_file("data.xml");
$count = 0;
$sortItem = 0;
$dateformat = "D j M, g:ia";
$sortArray = array();
foreach($xml->CatchUp as $item){
$sortArray[$count][TransmissionDate] = $item;
if($count < 4){
print "<p>Programme Name:<strong> "  . $item->ProgrammeName. "</strong></p>";
print "<p>Date Shown:<strong> "  . date($dateformat, strtotime($item->TransmissionDate)). "</strong></p>";
print "<p>Description:<strong> " . trunc($item->ShortSynopsis,30, " ")."</strong></p>";
print "<p><a href='". $item->VideoID. "'>". $item->VideoID."</a></p>";
    	 $count++;
  }
}

}

asort ($ sortArray);

2 Cevap

Bunu yapmanın iki yolu görüyoruz. İlk, daha sonra gelen düğümleri içeren başka bir dizi, daha sonra kullanmak TransmissionDate değerlerini içeren bir dizi oluşturmak olacaktır array_multisort(). Bu biraz sıkıcı, işte ben onun yerine ne yapardım: indir SimpleDOM ve kullanımı sortedXPath()

include 'SimpleDOM.php';

$xml = simpledom_load_file("data.xml");
$dateformat = "D j M, g:ia";

foreach($xml->sortedXPath('CatchUp[ProgrammeName="MTV"]', 'TransmissionDate') as $i => $item)
{
    if ($i == 4)
    {
        // I assume you only want the first 4
        break;
    }
    print "<p>Programme Name:<strong> "  . $item->ProgrammeName. "</strong></p>";
    print "<p>Date Shown:<strong> "  . date($dateformat, strtotime($item->TransmissionDate)). "</strong></p>";
    print "<p>Description:<strong> " . trunc($item->ShortSynopsis,30, " ")."</strong></p>";
    print "<p><a href='". $item->VideoID. "'>". $item->VideoID."</a></p>";
}

Lütfen SimpleXMLElement Object veri çekerken döküm kullanmayı deneyin

kullanarak video id: $sortArray[$count][VideoID] = (int)$item;