php – 重复数组到一定长度?

前端之家收集整理的这篇文章主要介绍了php – 重复数组到一定长度?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个数组,例如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);
原文链接:https://www.f2er.com/php/135754.html

猜你在找的PHP相关文章