How to print Hollow Pyramid Pattern in PHP


How to print Hollow Pyramid Pattern in PHP ?

Answer

To print a hollow pyramid pattern in PHP, you can use nested loops. The outer loop controls the rows, and the inner loops manage the spaces and stars to create the hollow effect.



✐ Examples

1 Hollow Pyramid Pattern (Height: 5) in PHP

In this example,

  1. Set the number of rows for the pyramid.
  2. Use nested loops: one for rows, one for spaces, and one for stars.
  3. In the inner loops, print spaces for the spaces between stars and print stars for the pyramid edges.
  4. Adjust conditions to print stars only at the pyramid edges and spaces elsewhere to create the hollow effect.
  5. Print each row to create the hollow pyramid pattern.

PHP Program

<?php
function printHollowPyramid($rows) {
    for ($i = 1; $i <= $rows; $i++) {
        $pattern = '';
        for ($j = $i; $j < $rows; $j++) {
            $pattern .= '  ';
        }
        for ($k = 1; $k < (2 * $i); $k++) {
            if ($k === 1 || $k === (2 * $i - 1) || $i === $rows) {
                $pattern .= '* ';
            } else {
                $pattern .= '  ';
            }
        }
        echo $pattern . "\n";
    }
}
printHollowPyramid(5);
?>

Output

        * 
      *   * 
    *       * 
  *           * 
* * * * * * * * *

Summary

In this tutorial, we learned How to print Hollow Pyramid Pattern in PHP language with well detailed examples.




More PHP Pattern Printing Tutorials

  1. How to print Left Half Pyramid Pattern in PHP ?
  2. How to print Right Half Pyramid Pattern in PHP ?
  3. How to print Pyramid Pattern in PHP ?
  4. How to print Rhombus Pattern in PHP ?
  5. How to print Diamond Pattern in PHP ?
  6. How to print Hour Glass Pattern in PHP ?
  7. How to print Hollow Square Pattern in PHP ?
  8. How to print Hollow Pyramid Pattern in PHP ?
  9. How to print Hollow Inverted Pyramid Pattern in PHP ?
  10. How to print Hollow Diamond Pattern in PHP ?
  11. How to print Floyd's Trianlge Pattern in PHP ?
  12. How to print Pascal's Triangle Pattern in PHP ?