PHP Process Control Alternative Syntax Example _php tutorial

Source: Internet
Author: User
Tags php foreach

Example of alternative syntax for PHP process Control


Phper, who has read the template of a WordPress-like blog program, will see a lot of strange PHP syntax, such as:

The empty

For a part of Phper never seen anything like this? Are those blog developers doing their own php-like template language?
Non-also, in fact, these are PHP syntax, but not commonly used, these are PHP process control of the alternative syntax.
Here we will give you a detailed talk about PHP Process Control alternative syntax. What is an alternative syntax?
In short, it is some kind of grammatical alternative notation.
Is there an alternative syntax for those grammars in PHP?
Process Control (including If,while,foreach,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 a endif;,endwhile;,endfor;,endforeach; and Endswitch;
Let's take an example:

is negative pull

The above statement is equivalent to

is negative pull
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:

equals 5

equals 5

Either 5 or 6.

While substitution syntax:

  • Loop dot What


  • For substitution syntax:

  • Loop dot What


  • foreach substitution syntax:

  • Loop dot What


  • Switch substitution syntax:
    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;
    ?>

    http://www.bkjia.com/PHPjc/895548.html www.bkjia.com true http://www.bkjia.com/PHPjc/895548.html techarticle PHP Process Control Alternative Syntax example Phper, who has learned the template of a WordPress-like blog, will see a lot of strange PHP syntax, such as: PHP if (empty ($GET _[' A ')):? font color= ...

  • Related Article

    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.