有没有更好(更有效的方法)让第一个和最后一个键交换这个数组中的位置?
<?php
function jim_is_jill($user_names) {
$user_A = $user_names[0];
$user_B = $user_names[1];
$user_C = $user_names[2];
$user_D = $user_names[3];
$new_arr = array($user_D, $user_B, $user_C, $user_A);
return $new_arr;
}
$user_names = array('Jim', 'Josh', 'Jamie', 'Jill');
print_r(jim_is_jill($user_names));
?>