Ben bir anahtar tanımlayarak başka diziler değerler merkezli bir dizi oluşturmak için çalışıyorum?
Örneğin
$old_array = array('hey', 'you', 'testing', 'this');
function get_new_array($key) {
global $old_array;
//return new array...
}
$new_array = get_new_array(2); //would return array('hey, 'you', 'testing'); as its the values of all the keys before the key 2 and the 2 key itself
Tüm yardım için teşekkür ederiz! : B