PHP Online Compiler
Example: PHP Program to draw the Half Pyramid Pattern of Stars
C
C++
C#
Java
Python
PHP
main.php
STDIN
Run
<?php // PHP Program to draw the Half Pyramid Pattern of Stars // It's the number of rows $r = 10; // It's the driver code to // print the half pyramid pattern for ($i = 1; $i <= $r; ++$i) { for ($j = 1; $j <= $i; ++$j) echo "* "; echo "\n"; } ?>
Output
Clear
ADVERTISEMENTS