微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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.jb51.cc/php/135754.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐