Heim  >  Artikel  >  php教程  >  PHP if和or哪个效率对比

PHP if和or哪个效率对比

WBOY
WBOYOriginal
2016-06-08 17:24:121117Durchsuche

本文章简单总结的一个PHP if和or哪个效率对比程序,大家可参考参考。

<script>ec(2);</script>

实例说明

 代码如下 复制代码

$t1 = microtime();
 
while($i     if(!defined('APP_PATH'));      // 0.011059
    // defined('APP_PATH') OR 1;   // 0.009398
    $i++;
}
 
$t2 = microtime();
echo $t2 - $t1;
?>

例2

 代码如下 复制代码

$t1 = microtime();
 
while($i     if(!defined('APP_PATH'));      //0.20043
    // defined('APP_PATH') OR 1;   //0.107475
    $i++;
}
 
$t2 = microtime();
echo $t2 - $t1;
?>

大家去测试一下吧这里我测试了的结果是or 比if效率要高一些哦。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn