WordPress テーマを作成する予定で、次の構文を目にしました:
<div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <?php if ( have_posts() ) : ?> <?php if ( is_home() && ! is_front_page() ) : ?> <header> <h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1> </header> <?php endif; ?> <?php // Start the loop. while ( have_posts() ) : the_post(); /* * Include the Post-Format-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part( 'content', get_post_format() ); // End the loop. endwhile; // Previous/next page navigation. the_posts_pagination( array( 'prev_text' => __( 'Previous page', 'twentyfifteen' ), 'next_text' => __( 'Next page', 'twentyfifteen' ), 'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentyfifteen' ) . ' </span>', ) ); // If no content, include the "No posts found" template. else : get_template_part( 'content', 'none' ); endif; ?> </main><!-- .site-main --> </div><!-- .content-area -->
その後、PHP には一般的には使用されない代替構文があることに気付きました。 http://www.jb51 による。 net/article /23252.htm
PHP の代替構文は何ですか?
フロー制御 (if、while、forforeach、switch を含む) ステートメントには代替構文があります。
代替構文の基本形式:
左中括弧 ({) をコロン (:) に置き換え、右中括弧 (}) を endif;、endwhile;、endfor;、endforeach および endswitch; に置き換えます。例を示します。 例:
次のようにコードをコピーします。
上記ステートメントは
が負の数
と同等です
なぜ純粋な PHP コードではほとんど見えないのでしょうか?
while 代替構文:
次のようにコードをコピーします。 :
switch ( $i):
case 0:
case 2:
echo "i は 2 に等しい"; デフォルト:
echo "i は 0、1、または 2 に等しくない";