3v4l.org

run code in 300+ PHP versions simultaneously
<?php $object1 = new stdClass(); $object1->id = 1; $object1->nome = 'B'; $object2 = new stdClass(); $object2->id = 1; $object2->nome = 'A'; $object3 = new stdClass(); $object3->id = 1; $object3->nome = 'L'; $dados = array($object3, $object1, $object2); function orderData(array $data, $orderByField = 'nome') { $asc = array(); foreach ($data as $key1 => $object1) { $field1 = $object1->{$orderByField}; foreach ($data as $key2 => $object2) { $field2 = $object2->{$orderByField}; if ($field1 != $field2) { $asc[$key1] = $object2; } } } return $asc; } var_dump( orderData($dados) );

preferences:
34.8 ms | 402 KiB | 5 Q