我想通過定義一個鍵來創建一個基於另一個數組值的數組?通過定義一個鍵來基於另一個數組值創建一個數組?
E.g.
$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
感謝所有幫助! :B
如果你打算把它放在一個自定義的函數中,我覺得使用`global`是個好主意。 – BoltClock 2011-01-08 01:38:22