QM_Collector::sort_ltime PHP Method

sort_ltime() public static method

public static sort_ltime ( $a, $b )
        public static function sort_ltime($a, $b)
        {
            if ($a['ltime'] == $b['ltime']) {
                return 0;
            } else {
                return $a['ltime'] > $b['ltime'] ? -1 : 1;
            }
        }