.01 .02 .03 .04 .05 .06 .07 .08 .09 .10 .11 .12 .13 .14 .15 .16 .17 .18 .19 .20 .21 .22 .23 .24 .25 .26 .27 .28 .29 .30 .31 .32 .33 .34 .35 .36 .37 .38 | <?php define ('MAX',2000000); function f1() { for($i=0;$i<MAX; $i++) { $c = "test " . $i; } } function f2() { for($i=0;$i<MAX; $i++) { $c = "test $i"; } } function f3() { for($i=0;$i<MAX; $i++) { $c = 'test ' . $i; } } $t1 = microtime(true); f1(); echo 'Time 1: ' , (microtime(true) - $t1) , "n"; $t2 = microtime(true); f2(); echo 'Time 2: ' , (microtime(true) - $t2) , "n"; $t3 = microtime(true); f3(); echo 'Time 3: ' , (microtime(true) - $t3) , "n"; ?> |