Home > Backend Development > PHP Tutorial > php和html混编

php和html混编

WBOY
Release: 2016-06-23 13:34:33
Original
916 people have browsed it





请输入:



我的理解是 我就循环了5次 我也没有做echo输出呢 怎么页面上有5个input框呢?

新手 帮帮忙 


回复讨论(解决方案)

 标记外的东西都将直接输出

for中的内容会被循环
相当于把循环体的内容执行多次,然后输出html。
这个与echo没有关系的,因为html本来就是输出的。

还是不理解 


请输入:

你的这段代码就是一个完整的循环了,第二行是由浏览器直接显示出来的不需要echo,因为这行代码是属于html的不属于php的,第一行和第三行形成了循环结构,所以才会在页面上循环显示出第一行和第三行之间的内容,这里是循环显示不是循环输出,html是写什么就显示什么,php代码的话是需要输出(打印)的

你的代码就等于

<?phpfor ($i=1;$i<5;$i++;){echo 'ipnput type="text" name="zhi"/>';endfor;}?>
Copy after login

感谢大家的回答。O(∩_∩)O谢谢

html中的都东西就可以等价于前面加了echo,这样理解就可以了。

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