I need to move an item from an array to its last position! First I ordered it in high order, but an item needs to be the last one on the list, how can I do this with PHP? I have the following code:
foreach ( $services as $key => $service ) {
if($service->values->group == "YubPArfPdg7phRfmyRjS") {
echo($service->values->group);
}
}