当前位置:Gxlcms > PHP教程 > html嵌套php:switch

html嵌套php:switch

时间:2021-07-01 10:21:17 帮助过:34人阅读

转载:http://www.cnblogs.com/glory-jzx/p/3345685.html
If you wan't to use the alternative syntax for switch statements this won't work:


switch($variable): ?>
case 1: ?>

Newspage

break;?>
case 2: ?>

Forum

break;?>
endswitch;?>
Instead you have to workaround like this:


switch($variable): 
case 1: ?>

Newspage

break;?>
case 2: ?>

Forum

break;?>
endswitch;?>



看了半天原来是PHP 的BUG。。。 唉。。。

switch : 和 case 之间是不能有任何

输出的。。。 PS : 一个空格也不行。。

you may see the comment in this link ........http://php.com/manual/en/control-structures.alternative-syntax.php

以上就介绍了html嵌套php:switch,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行