Hi I need something like below
If total number is 2990 , and i want to divide it by 500 equal parts .For example output should be like below stored in array
0,500
500,1000
1000,1500
1500,2000
2000,2500
2500,2990
What I tried
for($i=0;$i<=2990;$i=$i+500)
{
if($i%500==0)
{
$var = array_push($var,$i,$+500);
}
}
P.s : I am creating a sitemap and I need something like this to create LIMIT in my mysql query
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…