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

关于PHP循环话语

WBOY
WBOYOriginal
2016-06-13 12:58:04810browse

关于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 />

Statement:
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