Comparison of if and or running efficiency in PHP, phpifor efficiency. PHP if and or running efficiency comparison, phpifor efficiency This article describes the example of PHP if and or running efficiency comparison. Share it with you for your reference. The specific implementation method is as follows: compare the if and or running efficiency of if and or running PHP, phpifor efficiency
This article describes how to compare the 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.
Examples in this article describes how to compare the if and or running efficiency in PHP. Share it with you for your reference. The specific implementation method is as follows: run if and or...