DSCN0282

DSCN0282

DSCN0282

VN:F [1.9.22_1171]
Rating: 0.0/5 (0 votes cast)

Send yours!Responses to DSCN0282

  1. Hilal
    VA:F [1.9.22_1171]
    Rating: 0.0/5 (0 votes cast)

    I did a test with a 100K loop on each and yours is actually fatesr by .001 to .005 seconds. I did another test where I removed the unset out of mine and my was .040 .042 seconds fatesr. Here’s my test code:<?php$time_start = microtime(true);$i =0;do { $a = 1; $b = 2; list($a, $b) = array($b, $a); }while(++$i < 100000);$time_end = microtime(true);$time = $time_end $time_start;echo Test 1: ,$time, ;$time_start = microtime(true);$i =0;do { $a = 1; $b = 2; $x = $a; $y = $b; $a = $y; $b = $x; unset($x, $y); }while(++$i < 100000);$time_end = microtime(true);$time = $time_end $time_start;echo Test 2: ,$time, ;$time_start = microtime(true);$i =0;do { $a = 1; $b = 2; $x = $a; $y = $b; $a = $y; $b = $x; }while(++$i < 100000);$time_end = microtime(true);$time = $time_end $time_start;echo Test 3: ,$time, ;

Leave a Comment

Upload Files

You can include images or files in your comment by selecting them below. Once you select a file, it will be uploaded and a link to it added to your comment. You can upload as many images or files as you like and they will all be added to your comment.