好的,我试图获得前五名'一些xml文件按日期排序,希望你能帮助我,这就是我现在所拥有的
function getTopSongs( $n ){
$result = array();
$count = 0;
foreach( glob("xml/*.xml") as $filename ) {
if( $count < $n ){
$xml = simplexml_load_file($filename) or die("Error: Cannot create object");
array_push($result, $xml);
$count++;
}
}
return $result;
}
所以现在我打电话给我,我希望前五名的新闻价值最高,但不能按日期排序:
$top5 = getTopSongs(5);
这个例子现在只是重新调整前5 xml,但我不知道按日期排序,谢谢