php move index of a value to first position in array code example
Example: php move index of a value to first position in array
//appending $new in our array
array_unshift($arr, $new);
//now make it unique.
$final = array_unique($arr);
//appending $new in our array
array_unshift($arr, $new);
//now make it unique.
$final = array_unique($arr);