[Solved] How to range and sequence in PHP
[ad_1] You already mentioned the solution in your question. You can use: range(0, 10) To repeat the sequence 3 times you could do: str_repeat(implode(‘ ‘,range(0, 10)).’ ‘, 3); 1 [ad_2] solved How to range and sequence in PHP