3v4l.org

run code in 300+ PHP versions simultaneously
<?php function create_pyramid($limit) { for($row = 1; $row < $limit; $row ++) { $stars = str_repeat('*', ($row - 1) * 2 + 1); $space = str_repeat(' ', $limit - $row); echo $space . $stars . '<br/>'; } } echo "<pre>" ; create_pyramid(10);

preferences:
64.47 ms | 402 KiB | 5 Q