我有以下指令
$xml = 'https://tickets.leicesterymca.co.uk/feed/shows';
$data = simplexml_load_file($xml);
$encode = json_encode($data);
$decode = json_decode($encode, true);
$show = $decode['Show'];
//function to sort by array value
function date_compare($a, $b) {
$t1 = strtotime($a['ActiveFrom']);
$t2 = strtotime($b['ActiveFrom']);
return $t1 - $t2;
}
usort($show, 'date_compare');
//test active from value
foreach ($show as $time) {
echo $time['ActiveFrom'].'<br>';
}
//echo '<pre>'.print_r($show, true).'</pre>';
我也在同一页面上使用dirpagination,它正在工作,但是当页面改变时,意味着DOM获得新元素,无论在指令中写入什么都完全不起作用。
AM我错过任何事情,我是棱角分明的新人,所以我可能会遗漏一些东西
由于