Comparison of if and or in PHP _ php skills

Source: Internet
Author: User
This article mainly introduces the comparison of if and or running efficiency in PHP, which helps to gain a deeper understanding of the efficiency comparison of similar statements in PHP programs and provides some reference value for compiling high-quality PHP programs, for more information, see the example in this article to describe the comparison of if and or running efficiency in PHP. Share it with you for your reference. The specific implementation method is as follows:

An example is provided to illustrate the running efficiency of if and or. if you are interested, you can test it. here, the test result is that or is more efficient than if. the specific code is as follows:

The code is as follows:

<? Php
$ T1 = microtime ();
While ($ I <= 10000 ){
If (! Defined ('app _ path'); // 0.011059
// Defined ('app _ path') OR 1; // 0.009398
$ I ++;
}

$ T2 = microtime ();
Echo $ t2-$ t1;
?>

Instance 2:

The code is as follows:

<? Php
$ T1 = microtime ();

While ($ I <= 1000000 ){
If (! Defined ('app _ path'); // 0.20043
// Defined ('app _ path') OR 1; // 0.107475
$ I ++;
}

$ T2 = microtime ();
Echo $ t2-$ t1;
?>

I hope this article will help you with PHP programming.

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.