我有一个数组,例如4个元素数组(“a”,“b”,“c”,d“);重复此数组以创建具有一定长度的新数组的最快方法是什么,例如71元素?
// the variables $array = array("a","b","c","d"); $desiredLength = 71; $newArray = array(); // create a new array with AT LEAST the desired number of elements by joining the array at the end of the new array while(count($newArray) <= $desiredLength){ $newArray = array_merge($newArray,$array); } // reduce the new array to the desired length (as there might be too many elements in the new array $array = array_slice($newArray,$desiredLength);