私はキーを定義して別の配列値に基づいて配列を作成しようとしていますか?キーを定義して別の配列値に基づいて配列を作成しますか?
など。
$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