php教程

超轻量级php框架startmvc

PHP中的替代语法介绍

更新时间:2020-03-02 00:46 作者:startmvc
今天看了一下wordpress的代码,里面有些少见的php替代语法,<?phpelse:?>  &nbs

今天看了一下wordpress的代码,里面有些少见的php替代语法,


<?php else : ?>
        <div class="entry-content">
            <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'thebox' ) ); ?>
            <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( '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; ?>
其它替代语法可以类推。