fork download
  1. <?php
  2.  
  3. for($i=2;$i<=12;$i++){
  4. echo " ";
  5. if($i%2!=0 && $i>=3){
  6. echo "e";
  7. for($j=$i;$j<=$i+4;$j++){
  8. if($i==5){
  9. echo " ";
  10. }
  11. else{
  12. echo "*";
  13. }
  14.  
  15. }
  16. echo "<br>";
  17. }
  18.  
  19. }
  20.  
  21.  
  22.  
Success #stdin #stdout 0.03s 25540KB
stdin
Standard input is empty
stdout
  e*****<br>  e     <br>  e*****<br>  e*****<br>  e*****<br>