欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

html嵌套php:switch

程序员文章站 2022-04-13 14:17:24
...
转载: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.net/manual/en/control-structures.alternative-syntax.php

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