- print_r: documentation ( source)
- usort: documentation ( source)
<?php
$array = array (
0 =>
(object)array(
'tenure' => '1 year to less than 2 years'
),
1 =>
(object)array(
'tenure' => '10 years to less than 15 years'
),
2 =>
(object)array(
'tenure' => '15 years or more'
),
3 =>
(object)array(
'tenure' => '2 years to less than 5 years'
),
4 =>
(object)array(
'tenure' => '5 years to less than 10 years'
)
);
usort($array, function ($a, $b) { return (int)$a->tenure - (int)$b->tenure; });
print_r($array);