php – 重复数组到一定长度?
发布时间:2020-12-13 18:25:15 所属栏目: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 LEA
我有一个数组,例如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); (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |