3v4l.org

run code in 300+ PHP versions simultaneously
<?php $renderPyramid = function ($height) { $baseWidth = $height * 2 - 1; for ($i = 1; $i <= $height; $i++) { $spaces = str_pad('', $baseWidth - $i, ' '); $dots = str_pad('', $i * 2 - 1, '.'); echo $spaces . $dots . PHP_EOL; } }; $renderPyramid(4);

preferences:
47.01 ms | 402 KiB | 5 Q