Hello!
I have the folloring array structure:
$list = array();
$element1 = array('start' => '10', 'end' => '15');
$element2 = array('start' => '1', 'end' => '5');
$list[] = $element1;
$list[] = $element2;
Every element in start
and end
are numeric only.
I would like to sort $list
by start
values. How can I do that effectivly?