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

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了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);

脚本宝典总结

以上是脚本宝典为你收集整理的php – 重复数组到一定长度?全部内容,希望文章能够帮你解决php – 重复数组到一定长度?所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。