Introduction to Alternative syntax in PHP _php tips

Source: Internet
Author: User
Tags php programming

Alternative syntax is an uncommon and sometimes important concept in PHP programming. Today, this article shows the use of this concept in an instance form.

Look at the WordPress code, which can be seen in some rare PHP substitution syntax, as follows:

<?php else:?>
    <div class= "entry-content" >
      <?php the_content (__ (' Continue reading class= "Meta-nav" >→</span> ', ' Thebox ');?> <?php wp_link_pages ("Before ' =>" <div
      class= "Page-links" >. __ (' Pages: ', ' Thebox '), ' after ' => ' </div> ');?>
    </div><!--. Entry-content-->
PHP endif;?>

Many readers will have the question: what is the colon and endif after else? Google a bit to understand that this is the alternative syntax of PHP.

where the colon (:) equivalent to the left curly brace ({), endif equivalent Yu Yu curly braces (});

Let me give you one more example:

<?php if ($a <0):?>
//negative situation
<?php endif;?>

The preceding statement is equivalent to:

<?php if ($a <0) {?>
//Negative number
<?php}?>

So the syntax in PHP has an alternative syntax?

Process Control (including If,while,forforeach,switch) These statements have alternative syntax.

The basic form of alternative syntax:

The left curly brace ({) is replaced with a colon (:), and the right curly brace (}) is replaced with Endif;,endwhile;,endfor;,endforeach; and Endswitch;

While substitution syntax:

<?php while (expr):?>
 <li> loop content </li>
<?php endwhile;?>

Other alternative grammars can be analogous.

I hope this article will help you learn about PHP programming.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.