第3关:for语句 - 打印三角形
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=gb2312' />
</head>
<body bgcolor="#3498db">
<?php
$n=4;
/**********Begin*********/
for($i=1;$i<=$n;$i++){
for($j=1;$j<=($n-$i);$j++){
echo " ";
}
for($k=1;$k<=2*$i-1;$k++)
echo "*";
echo "<br>";
}
/*******End******/
?>
</body>
</html>