Home  >  Article  >  Backend Development  >  一段PHP代码!

一段PHP代码!

WBOY
WBOYOriginal
2016-06-23 13:58:121056browse

 if(is_array($today)): $i = 0; $__LIST__ = $today;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vo): ++$i;$mod = ($i % 2 )
?>

上面的代码是什么写法?“:”是什么符?懂得大神详细讲解下!


回复讨论(解决方案)

估计是你框架的程序将大括号{}替换成了: 仔细看看你的配置文件

估计是你框架的程序将大括号{}替换成了: 仔细看看你的配置文件


我也只能这么看!这样可以实现么?

我也只能这么看!这样可以实现么?


不知道啊 你运行下试试 不行就改成大括号的{}


我也只能这么看!这样可以实现么?


不知道啊 你运行下试试 不行就改成大括号的{}

这些都是编译过的缓存文件显示的,一般编译过的缓存文件都是最终的,竟然用了“:”除非PHP支持这玩意儿!

php 流程控制有两种语法结构。一种用大括号表示语句块,一种用冒号表示语句块。
大括号表示语句块的用得较多,这里就不说了。
使用冒号“:”来代替左边的大括号“{”;使用endif;、endwhile;、endfor;、endforeach;和endswitch;来代替右边的大括号“}”。

例如以下两段程序是一样的

$a=1;$b=2;if($a==$b){    echo 'a=b';}else{    echo 'a!=b';}


$a=1;$b=2;if($a==$b)    :echo 'a=b';else    :echo 'a!=b';endif

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