PHP中的替代语法简介

查看一下wordpress的代码,里面可以见到有些少见的php替代语法,如下所示:

<?php else : ?> <div> <?php the_content( __( 'Continue reading <span>→</span>', 'thebox' ) ); ?> <?php wp_link_pages( array( 'before' => '<div>' . __( 'Pages:', 'thebox' ), 'after' => '</div>' ) ); ?> </div><!-- .entry-content --> <?php endif; ?>

很多读者都会有这样的疑问:else后面的冒号和endif代表啥?google了一下就可以明白,这就是php的替代语法。

其中的冒号(:)等价于左花括号({),endif等价于右花括号(});

再来举个例子:

<?php if ($a<0): ?> //负数的情况 <?php endif; ?>

上面的语句等同于:

<?php if ($a<0){ ?> //负数的情况 <?php } ?>

那么PHP中那些语法有替代语法?

流程控制(包括if,while,forforeach,switch)这几个语句有替代语法。

替代语法的基本形式:

左花括号({)换成冒号(:),把右花括号(})分别换成 endif;,endwhile;,endfor;,endforeach; 以及 endswitch;

while替代语法:

<?php while (expr): ?> <li>循环内容</li> <?php endwhile; ?>

其它替代语法可以类推。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/4192519631ce08a5377511021ac2b3d9.html