在PHP中,可以使用嵌套的 while 循環來輸出金字塔。以下是一個示例代碼:
$height = 5; // 金字塔的高度
$row = 1;
while ($row <= $height) {
// 打印空格
$spaces = $height - $row;
$col = 1;
while ($col <= $spaces) {
echo " ";
$col++;
}
// 打印星號
$stars = 2 * $row - 1;
$col = 1;
while ($col <= $stars) {
echo "*";
$col++;
}
echo PHP_EOL;
$row++;
}
在上面的代碼中,我們使用了三個 while 循環。第一個 while 循環用于控制金字塔的行數,第二個 while 循環用于打印每行的空格,第三個 while 循環用于打印每行的星號。
輸出結果為:
*
***
*****
*******
*********
可以根據需要調整金字塔的高度($height 變量的值)。