Home > Backend Development > PHP Tutorial > 关于PHP循环话语

关于PHP循环话语

WBOY
Release: 2016-06-13 11:07:38
Original
928 people have browsed it

关于PHP循环语句
如何使用PHP中的循环语句书写一个三角形图形
------解决方案--------------------

<br />		for($i=10;$i>=0;$i--){<br />		<br />			for($j=0;$j<$i;$j++){<br />				echo "*";<br />			}<br />			echo "<br/>";<br />			<br />		}<br />
Copy after login

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template