This is an excerpt from the xml feed I'm accessing:
And here's my current code:
$file = file_get_contents('feed.xml');
$file = preg_replace('/(<role[^>]+>)([^<]+)/si', '$1', $file);
$xml = new SimpleXMLElement($file);
$search_term = preg_replace('/[,.\/\\\(\)\[\]\{\}`~!@#\$%\^&*;:\'"\-_<>]*/is', '', $_GET['work']);
$productions = $xml->xpath('//production');
?>
<table width="300px" cellspacing="5px" cellpadding="5px" border="1px" >
<tr>
<th>year</th>
<th>company</th>
</tr>
<?php
foreach($productions as $prod) {
$prod_attrs = $prod->attributes();
$prod_date = $prod_attrs->startdate;
echo "<tr><td>", $prod_date, "</td><td>", html_encode($prod_attrs->company), "</td></tr>";
}
?>
</table>
This is the output:
My question is, how do I get the table to sort in descending numerical order (i.e. most recent year first)? I've searched here and tried to understand the sort()
function (e.g. this answer), but it's a bit beyond me still and I can't figure out how to get that to work here.
UPDATE
I'm playing around with @Chris Goddard's answer below..
This is the code I've got, but it doesn't seem to have done the trick:
<?php
function html_encode($var){
$var = html_entity_decode($var, ENT_QUOTES, 'UTF-8');
$var = htmlentities($var, ENT_QUOTES, 'UTF-8');
return $var;
}
$file = file_get_contents('feed.xml');
$file = preg_replace('/(<role[^>]+>)([^<]+)/si', '$1', $file);
$xml = simplexml_load_string($file);
$json = json_encode($xml);
$array = json_decode($json,TRUE);
$search_term = preg_replace('/[,.\/\\\(\)\[\]\{\}`~!@#\$%\^&*;:\'"\-_<>]*/is', '', $_GET['work']);
$works = $xml->xpath('//work');
foreach($works as $work) {
$Productions = $work->xpath('./production');
$Sorter = array();
foreach ($Productions as $prod) {
$prod_attrs = $prod->attributes();
$Sorter[$key] = $prod_attrs->startdate;
array_multisort($Sorter, SORT_DESC, $Productions);
}
}
echo "<pre>".print_r($works, true)."</pre>";
?>
What am I doing wrong?