Alternative syntax that is not commonly used in PHP process Control

Source: Internet
Author: User
Tags php foreach

ready to do a wordpress theme, the results see the following syntax:
    <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 ()):?> & lt;header> 




This is to know that PHP has a less common alternative syntax: according to http://www.jb51.net/article/23252.htm

is there an alternative syntax for those grammars in PHP?
Process Control (including If,while,forforeach,switch) has alternative syntax for several statements.

the basic form of alternative syntax: 
The left Curly brace ({) is replaced by a colon (:) and the right curly brace (}) is replaced by Endif;,endwhile;,endfor;,endforeach; and Endswitch;

Let's take an example:

Copy CodeThe code is as follows:
<?php if ($a <0):?>
is negative pull
<?php endif;?>
The above statement is equivalent to
<?php if ($a <0) {?>
is negative pull
<?php}?>


Why is the pure PHP code almost invisible?  
These grammars are a bit out of line with the C family tradition a little bit different, we are not accustomed to this grammar, and not very convenient

We're not used to it, and what's the use of this alternative? Does the egg hurt?
existence is reasonable, it has its own usefulness, these grammars can be played in the PHP and HTML mixed page code inside. The benefits are as follows:
1. Make the HTML and PHP Mix page code cleaner and neater.
a friend with code cleanliness is most afraid of a messy mix of code, with these no curly braces alternative syntax, you love clean friends happy to pee.
2. Process Control logic clearer, code easier to read
to change someone else's PHP and HTML mixed code, open Find, I wipe! It's so damn rubbish! If you use the alternative syntax, I think the garbage program developers are not too messy to write.
3. Some friends from other basic language families, such as ASP, will be more likely to use PHP.

It's useless to talk for half a day, okay? How does this thing work?

The alternative syntax for the IF statement is used as follows, as described previously:
Copy CodeThe code is as follows:
<?php if ($a = = 5):?>
<div> equals 5</div>
<?php ElseIf ($a = = 6):?>
<div> equals 5</div>
<?php Else:?>
<div> not 5 is 6</div>
<?php endif;?>

While substitution syntax: 
Copy CodeThe code is as follows:
<?php while (expr):?>
<li> Cycle Point What </li>
<?php Endwhile;?>

For substitution syntax: 
Copy CodeThe code is as follows:
<?php for (EXPR1; expr2; expr3):?>
<li> Cycle Point What </li>
<?php endfor;?>

foreach substitution syntax:
Copy CodeThe code is as follows:
<?php foreach (expr1):?>
<li> Cycle Point What </li>
<?php Endforeach;?>


Switch substitution syntax:
Copy CodeThe code is as follows:
<?php
Switch ($i):
Case 0:
echo "I equals 0";
Break
Case 1:
echo "I equals 1";
Break
Case 2:
echo "I equals 2";
Break
Default
echo "I am not equal to 0, 1 or 2";
Endswitch;
?>

Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

Alternative syntax that is not commonly used in PHP process Control

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.