list - PHP - Best way to print multiplication table -
basic php. decided print list of 10 multiples of 17.5, like:
17.5 | 35 | 52.5 | 70 | 87.5 | 105 | 122.5 | 140 | 157.5 | 175 |
so first used loop:
<?php $number = 17.5; $result = 0; $i = 0; while ($i < 10) { $result += $number; echo $result.' | '; $i++; }
well, works. switched this, quite shorter:
$i = 1; $result = 17.5; while ($i <= 10) { echo $result * $i.' | '; $i++; }
but i'm sure there better way. what's best syntax?
$results = array(); ($i = 1; $i <= 10; $i++){ $results[] = $i * 17.5; } echo implode(' | ', $results);
or better
echo implode(' | ', range(17.5, 17.5*10, 17.5));
Comments
Post a Comment