一段PHP代码!

WBOY
Libérer: 2016-06-23 13:58:12
original
1073 Les gens l'ont consulté

 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';}
Copier après la connexion


$a=1;$b=2;if($a==$b)    :echo 'a=b';else    :echo 'a!=b';endif
Copier après la connexion

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal