这样写是为啥?运行过程是怎样的?
PHP code
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
-->
<?php>
try
{
if(xxx)
{
>
//html代码
<?php>
} //end of if
} //end of try
>
Nach dem Login kopieren
------解决方案--------------------
try
{
if(xxx)
{
>
//html代码
我不清楚你说的断开写是什么情况,
但在 ?>和
------解决方案--------------------运行过程就是从上至下,这么写的好处无非是省略了PHP的echo,然后在一定程度上使得程序的结构比纯PHP代码要清晰。所有的代码还是归PHP解释器解析的。