View file public_html/kernel/function/cmp.php
<?php
function cmp2 ($a, $b)
{
if ($a['2'] == $b['2']) return 0;
return ($a['2'] > $b['2']) ? -1 : 1;
}
<?php
function cmp2 ($a, $b)
{
if ($a['2'] == $b['2']) return 0;
return ($a['2'] > $b['2']) ? -1 : 1;
}