3v4l.org

run code in 500+ PHP versions simultaneously
<?php $before = [ 'name' => 'Bertie', 'age' => '23' ]; $after = [ 'name' => 'Harold', 'age' => '23', 'occupation' => 'Bus driver' ]; function changed_1($after, $before) { return array_diff_assoc($after, $before); } function changed_2($after, $before) { $changed = []; foreach($after as $k => $v) { if(isset($before[$k]) && $before[$k] !== $v) $changed[$k] = $v; if(!isset($before[$k])) $changed[$k] = $v; } return $changed; } var_export(changed_1($after, $before)); var_export(changed_2($after, $before)); /* Output: array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', ) */ // 26 * 26 * 6 = 4056, aA1 aA2 aB1 foreach(range('a', 'z') as $char1) foreach(range('A', 'Z') as $char2) foreach(range('1', '5') as $char3) { $key = $char1 . $char2 . $char3; $data1[$key] = $char1 . $char2 . $char3; $data2[$key] = $char1 . $char3 . $char2; } prof_flag('changed_1'); changed_1($data2, $data1); prof_flag('changed_2'); changed_2($data2, $data1); prof_flag("Done"); prof_print(); // SO TimH https://stackoverflow.com/a/29022400/3392762 function prof_flag($str) { global $prof_timing, $prof_names; $prof_timing[] = microtime(true); $prof_names[] = $str; } // Call this when you're done and want to see the results function prof_print() { global $prof_timing, $prof_names; $size = count($prof_timing); for($i=0;$i<$size - 1; $i++) { echo "<b>{$prof_names[$i]}</b><br>"; echo sprintf("&nbsp;&nbsp;&nbsp;%f<br>", $prof_timing[$i+1]-$prof_timing[$i]); } echo "<b>{$prof_names[$size-1]}</b><br>"; }
Output for 8.5.3
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000434<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000479<br><b>Done</b><br>
Output for 8.3.2
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000137<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000396<br><b>Done</b><br>
Output for 8.3.1
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000112<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000335<br><b>Done</b><br>
Output for 8.3.0
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000111<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000378<br><b>Done</b><br>
Output for 8.2.15
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000092<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000268<br><b>Done</b><br>
Output for 8.2.14
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000093<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000268<br><b>Done</b><br>
Output for 8.2.13
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000103<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000264<br><b>Done</b><br>
Output for 8.2.12
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000139<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000406<br><b>Done</b><br>
Output for 8.2.11
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000098<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000261<br><b>Done</b><br>
Output for 8.2.10
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000092<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000271<br><b>Done</b><br>
Output for 8.2.9
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000135<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000406<br><b>Done</b><br>
Output for 8.2.8
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000137<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000416<br><b>Done</b><br>
Output for 8.2.7
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000139<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000436<br><b>Done</b><br>
Output for 8.2.6
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000139<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000401<br><b>Done</b><br>
Output for 8.2.5
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000177<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000395<br><b>Done</b><br>
Output for 8.2.4
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000092<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000315<br><b>Done</b><br>
Output for 8.2.3
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000135<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000411<br><b>Done</b><br>
Output for 8.2.2
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000114<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000343<br><b>Done</b><br>
Output for 8.2.1
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000135<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000416<br><b>Done</b><br>
Output for 8.2.0
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000092<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000277<br><b>Done</b><br>
Output for 8.1.27
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000089<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000260<br><b>Done</b><br>
Output for 8.1.26
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000089<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000300<br><b>Done</b><br>
Output for 8.1.25
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000094<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000261<br><b>Done</b><br>
Output for 8.1.24
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000091<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000261<br><b>Done</b><br>
Output for 8.1.23
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000091<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000335<br><b>Done</b><br>
Output for 8.1.8, 8.1.22
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000103<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000261<br><b>Done</b><br>
Output for 8.1.21
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000092<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000314<br><b>Done</b><br>
Output for 8.1.1, 8.1.20
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000090<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000259<br><b>Done</b><br>
Output for 8.1.0, 8.1.19
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000092<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000262<br><b>Done</b><br>
Output for 8.1.18
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000093<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000287<br><b>Done</b><br>
Output for 8.1.17
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000091<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000259<br><b>Done</b><br>
Output for 8.1.16
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000092<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000276<br><b>Done</b><br>
Output for 8.1.15
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000179<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000497<br><b>Done</b><br>
Output for 8.1.14
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000227<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000442<br><b>Done</b><br>
Output for 8.1.13
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000092<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000261<br><b>Done</b><br>
Output for 8.1.12
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000091<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000305<br><b>Done</b><br>
Output for 8.1.11
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000109<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000261<br><b>Done</b><br>
Output for 8.1.10
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000093<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000306<br><b>Done</b><br>
Output for 8.1.9
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000090<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000272<br><b>Done</b><br>
Output for 8.1.7
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000091<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000266<br><b>Done</b><br>
Output for 8.1.6
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000090<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000295<br><b>Done</b><br>
Output for 8.1.5
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000090<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000263<br><b>Done</b><br>
Output for 8.1.4
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000091<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000295<br><b>Done</b><br>
Output for 8.1.3
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000092<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000273<br><b>Done</b><br>
Output for 8.1.2
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000089<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000262<br><b>Done</b><br>
Output for 8.0.30
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000089<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000294<br><b>Done</b><br>
Output for 8.0.29
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000392<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000317<br><b>Done</b><br>
Output for 8.0.28
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000383<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000281<br><b>Done</b><br>
Output for 8.0.27
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000093<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000292<br><b>Done</b><br>
Output for 8.0.26
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000382<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000290<br><b>Done</b><br>
Output for 8.0.25
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000090<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000270<br><b>Done</b><br>
Output for 8.0.24
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000399<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000278<br><b>Done</b><br>
Output for 8.0.23
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000402<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000282<br><b>Done</b><br>
Output for 8.0.22
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000382<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000274<br><b>Done</b><br>
Output for 8.0.21
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000399<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000273<br><b>Done</b><br>
Output for 8.0.20
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000409<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000304<br><b>Done</b><br>
Output for 8.0.19
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000445<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000274<br><b>Done</b><br>
Output for 8.0.18
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000091<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000280<br><b>Done</b><br>
Output for 8.0.17
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000419<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000278<br><b>Done</b><br>
Output for 8.0.16
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000091<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000276<br><b>Done</b><br>
Output for 8.0.15
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000395<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000293<br><b>Done</b><br>
Output for 8.0.14
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000395<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000280<br><b>Done</b><br>
Output for 8.0.13
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000474<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000349<br><b>Done</b><br>
Output for 8.0.12
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000424<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000292<br><b>Done</b><br>
Output for 8.0.11
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000134<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000412<br><b>Done</b><br>
Output for 8.0.10
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000477<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000364<br><b>Done</b><br>
Output for 8.0.9
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000481<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000403<br><b>Done</b><br>
Output for 8.0.8
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000114<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000368<br><b>Done</b><br>
Output for 8.0.7
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000090<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000268<br><b>Done</b><br>
Output for 8.0.6
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000474<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000275<br><b>Done</b><br>
Output for 8.0.5
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000390<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000273<br><b>Done</b><br>
Output for 8.0.3
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000314<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000294<br><b>Done</b><br>
Output for 8.0.2
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000453<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000273<br><b>Done</b><br>
Output for 8.0.1
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000518<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000460<br><b>Done</b><br>
Output for 8.0.0
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000176<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000272<br><b>Done</b><br>
Output for 7.4.33
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000398<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000362<br><b>Done</b><br>
Output for 7.4.32
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000400<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000283<br><b>Done</b><br>
Output for 7.4.30
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000503<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000289<br><b>Done</b><br>
Output for 7.4.29
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000425<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000314<br><b>Done</b><br>
Output for 7.4.28
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000582<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000535<br><b>Done</b><br>
Output for 7.4.27
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000416<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000284<br><b>Done</b><br>
Output for 7.4.2, 7.4.26
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000407<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000281<br><b>Done</b><br>
Output for 7.4.25
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000456<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000296<br><b>Done</b><br>
Output for 7.4.24
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000411<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000294<br><b>Done</b><br>
Output for 7.4.23
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000493<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000288<br><b>Done</b><br>
Output for 7.4.22
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000407<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000283<br><b>Done</b><br>
Output for 7.4.21
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000410<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000286<br><b>Done</b><br>
Output for 7.4.20
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000404<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000321<br><b>Done</b><br>
Output for 7.4.19
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000411<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000328<br><b>Done</b><br>
Output for 7.4.18
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000602<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000429<br><b>Done</b><br>
Output for 7.4.16
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000404<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000282<br><b>Done</b><br>
Output for 7.4.15
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000498<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000354<br><b>Done</b><br>
Output for 7.4.14
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000493<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000354<br><b>Done</b><br>
Output for 7.4.13
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000647<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000399<br><b>Done</b><br>
Output for 7.4.12
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000430<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000309<br><b>Done</b><br>
Output for 7.4.11
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000398<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000311<br><b>Done</b><br>
Output for 7.4.10
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000440<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000291<br><b>Done</b><br>
Output for 7.3.25, 7.4.9
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000403<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000285<br><b>Done</b><br>
Output for 7.4.8
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000583<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000472<br><b>Done</b><br>
Output for 7.4.7
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000538<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000472<br><b>Done</b><br>
Output for 7.4.6
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000407<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000285<br><b>Done</b><br>
Output for 7.4.5
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000405<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000301<br><b>Done</b><br>
Output for 7.4.4
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000405<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000283<br><b>Done</b><br>
Output for 7.4.3
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000417<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000328<br><b>Done</b><br>
Output for 7.4.1
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000418<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000303<br><b>Done</b><br>
Output for 7.4.0
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000406<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000287<br><b>Done</b><br>
Output for 7.3.33
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000401<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000289<br><b>Done</b><br>
Output for 7.3.32
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000404<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000283<br><b>Done</b><br>
Output for 7.3.31
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000404<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000302<br><b>Done</b><br>
Output for 7.3.30
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000505<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000365<br><b>Done</b><br>
Output for 7.3.29
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000560<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000286<br><b>Done</b><br>
Output for 7.3.28
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000406<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000426<br><b>Done</b><br>
Output for 7.3.27
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000410<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000300<br><b>Done</b><br>
Output for 7.3.26
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000542<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000394<br><b>Done</b><br>
Output for 7.3.24
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000708<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000434<br><b>Done</b><br>
Output for 7.3.23
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000402<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000298<br><b>Done</b><br>
Output for 7.3.22
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000445<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000286<br><b>Done</b><br>
Output for 7.3.21
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000578<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000399<br><b>Done</b><br>
Output for 7.3.20
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000725<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000662<br><b>Done</b><br>
Output for 7.3.19
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000400<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000289<br><b>Done</b><br>
Output for 7.3.18
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000407<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000290<br><b>Done</b><br>
Output for 7.3.17
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000408<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000302<br><b>Done</b><br>
Output for 7.3.16
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000464<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000293<br><b>Done</b><br>
Output for 7.3.15
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000467<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000285<br><b>Done</b><br>
Output for 7.3.14
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000504<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000321<br><b>Done</b><br>
Output for 7.3.13
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000406<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000286<br><b>Done</b><br>
Output for 7.3.12
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000400<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000285<br><b>Done</b><br>
Output for 7.3.11
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000418<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000299<br><b>Done</b><br>
Output for 7.3.10
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000400<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000288<br><b>Done</b><br>
Output for 7.3.9
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000604<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000483<br><b>Done</b><br>
Output for 7.3.8
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000602<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000427<br><b>Done</b><br>
Output for 7.3.7
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000423<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000307<br><b>Done</b><br>
Output for 7.3.6
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000624<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000500<br><b>Done</b><br>
Output for 7.3.5
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000515<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000294<br><b>Done</b><br>
Output for 7.3.4
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000644<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000430<br><b>Done</b><br>
Output for 7.3.3
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000586<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000450<br><b>Done</b><br>
Output for 7.3.2
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000227<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000817<br><b>Done</b><br>
Output for 7.3.1
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000153<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000564<br><b>Done</b><br>
Output for 7.3.0
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000114<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000284<br><b>Done</b><br>
Output for 7.2.34
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000175<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000457<br><b>Done</b><br>
Output for 7.2.33
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000501<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000389<br><b>Done</b><br>
Output for 7.2.32
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000402<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000311<br><b>Done</b><br>
Output for 7.2.31
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000429<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000306<br><b>Done</b><br>
Output for 7.2.30
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000488<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000383<br><b>Done</b><br>
Output for 7.2.29
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000513<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000385<br><b>Done</b><br>
Output for 7.2.28
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000497<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000408<br><b>Done</b><br>
Output for 7.2.27
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000500<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000416<br><b>Done</b><br>
Output for 7.2.26
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000498<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000390<br><b>Done</b><br>
Output for 7.2.25
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000490<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000390<br><b>Done</b><br>
Output for 7.2.24
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000589<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000491<br><b>Done</b><br>
Output for 7.2.23
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000630<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000551<br><b>Done</b><br>
Output for 7.2.22
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000611<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000525<br><b>Done</b><br>
Output for 7.2.21
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000626<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000472<br><b>Done</b><br>
Output for 7.2.20
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000579<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000386<br><b>Done</b><br>
Output for 7.2.19
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000687<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000636<br><b>Done</b><br>
Output for 7.2.18
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000496<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000387<br><b>Done</b><br>
Output for 7.2.17
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000514<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000390<br><b>Done</b><br>
Output for 7.2.16
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000416<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000311<br><b>Done</b><br>
Output for 7.2.11, 7.2.15
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000117<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000307<br><b>Done</b><br>
Output for 7.2.14
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000152<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000308<br><b>Done</b><br>
Output for 7.2.6, 7.2.13
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000116<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000306<br><b>Done</b><br>
Output for 7.2.12
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000193<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000458<br><b>Done</b><br>
Output for 7.2.10
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000115<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000305<br><b>Done</b><br>
Output for 7.2.9
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000117<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000311<br><b>Done</b><br>
Output for 7.2.8
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000117<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000310<br><b>Done</b><br>
Output for 7.2.7
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000171<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000458<br><b>Done</b><br>
Output for 7.2.5
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000171<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000456<br><b>Done</b><br>
Output for 7.2.4
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000173<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000479<br><b>Done</b><br>
Output for 7.2.3
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000172<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000456<br><b>Done</b><br>
Output for 7.2.2
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000171<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000528<br><b>Done</b><br>
Output for 7.2.1
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000168<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000481<br><b>Done</b><br>
Output for 7.2.0
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000214<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000650<br><b>Done</b><br>
Output for 7.1.33
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000184<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000565<br><b>Done</b><br>
Output for 7.0.7, 7.1.32
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000117<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000371<br><b>Done</b><br>
Output for 7.1.31
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000116<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000368<br><b>Done</b><br>
Output for 7.1.30
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000125<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000364<br><b>Done</b><br>
Output for 7.1.29
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000116<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000364<br><b>Done</b><br>
Output for 7.1.28
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000117<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000366<br><b>Done</b><br>
Output for 7.1.27
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000118<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000389<br><b>Done</b><br>
Output for 7.1.26
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000119<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000429<br><b>Done</b><br>
Output for 7.1.11, 7.1.25
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000116<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000366<br><b>Done</b><br>
Output for 7.1.24
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000175<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000579<br><b>Done</b><br>
Output for 7.1.23
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000122<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000420<br><b>Done</b><br>
Output for 7.1.22
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000157<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000487<br><b>Done</b><br>
Output for 7.1.21
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000147<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000476<br><b>Done</b><br>
Output for 7.1.20
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000117<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000357<br><b>Done</b><br>
Output for 7.1.19
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000146<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000521<br><b>Done</b><br>
Output for 7.1.18
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000145<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000466<br><b>Done</b><br>
Output for 7.1.17
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000148<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000463<br><b>Done</b><br>
Output for 7.1.16
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000143<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000444<br><b>Done</b><br>
Output for 7.1.15
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000232<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000588<br><b>Done</b><br>
Output for 7.1.14
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000221<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000710<br><b>Done</b><br>
Output for 7.1.13
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000171<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000534<br><b>Done</b><br>
Output for 7.0.14, 7.1.12
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000117<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000381<br><b>Done</b><br>
Output for 7.1.10
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000120<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000368<br><b>Done</b><br>
Output for 7.0.12, 7.1.9
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000116<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000379<br><b>Done</b><br>
Output for 7.1.8
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000115<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000468<br><b>Done</b><br>
Output for 7.1.7
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000118<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000390<br><b>Done</b><br>
Output for 7.1.6
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000118<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000397<br><b>Done</b><br>
Output for 7.1.5
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000153<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000399<br><b>Done</b><br>
Output for 7.1.4
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000115<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000357<br><b>Done</b><br>
Output for 7.1.3
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000119<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000368<br><b>Done</b><br>
Output for 7.1.2
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000171<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000552<br><b>Done</b><br>
Output for 7.1.1
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000174<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000603<br><b>Done</b><br>
Output for 7.1.0
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000118<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000362<br><b>Done</b><br>
Output for 7.0.33
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000118<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000371<br><b>Done</b><br>
Output for 7.0.32
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000146<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000461<br><b>Done</b><br>
Output for 7.0.31
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000114<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000378<br><b>Done</b><br>
Output for 7.0.30
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000116<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000418<br><b>Done</b><br>
Output for 7.0.29
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000203<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000616<br><b>Done</b><br>
Output for 7.0.28
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000118<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000374<br><b>Done</b><br>
Output for 7.0.27
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000174<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000570<br><b>Done</b><br>
Output for 7.0.26
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000247<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000799<br><b>Done</b><br>
Output for 7.0.25
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000174<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000547<br><b>Done</b><br>
Output for 7.0.24
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000176<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000562<br><b>Done</b><br>
Output for 7.0.23
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000172<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000541<br><b>Done</b><br>
Output for 7.0.22
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000176<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000587<br><b>Done</b><br>
Output for 7.0.21
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000119<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000388<br><b>Done</b><br>
Output for 7.0.20
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000115<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000365<br><b>Done</b><br>
Output for 7.0.19
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000118<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000419<br><b>Done</b><br>
Output for 7.0.18
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000119<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000374<br><b>Done</b><br>
Output for 7.0.17
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000137<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000390<br><b>Done</b><br>
Output for 7.0.16
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000116<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000373<br><b>Done</b><br>
Output for 7.0.15
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000116<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000376<br><b>Done</b><br>
Output for 7.0.13
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000116<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000398<br><b>Done</b><br>
Output for 7.0.11
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000134<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000374<br><b>Done</b><br>
Output for 7.0.10
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000116<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000365<br><b>Done</b><br>
Output for 7.0.9
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000115<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000374<br><b>Done</b><br>
Output for 7.0.8
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000115<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000376<br><b>Done</b><br>
Output for 7.0.6
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000118<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000375<br><b>Done</b><br>
Output for 7.0.5
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000118<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000378<br><b>Done</b><br>
Output for 7.0.4
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000115<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000422<br><b>Done</b><br>
Output for 7.0.3
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000117<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000386<br><b>Done</b><br>
Output for 7.0.2
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000117<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000369<br><b>Done</b><br>
Output for 7.0.1
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000115<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000378<br><b>Done</b><br>
Output for 7.0.0
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000134<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.000389<br><b>Done</b><br>
Output for 5.6.40
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.001027<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.002487<br><b>Done</b><br>
Output for 5.6.39
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000718<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001898<br><b>Done</b><br>
Output for 5.6.38
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000723<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001636<br><b>Done</b><br>
Output for 5.6.37
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000713<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001551<br><b>Done</b><br>
Output for 5.6.36
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000747<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001520<br><b>Done</b><br>
Output for 5.6.35
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000778<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001570<br><b>Done</b><br>
Output for 5.6.34
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000793<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001557<br><b>Done</b><br>
Output for 5.6.33
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000667<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001788<br><b>Done</b><br>
Output for 5.6.32
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000748<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001522<br><b>Done</b><br>
Output for 5.6.31
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000668<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001559<br><b>Done</b><br>
Output for 5.6.30
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000854<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001527<br><b>Done</b><br>
Output for 5.6.29
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000818<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001619<br><b>Done</b><br>
Output for 5.6.28
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000819<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001590<br><b>Done</b><br>
Output for 5.6.27
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000747<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001975<br><b>Done</b><br>
Output for 5.6.26
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000707<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001626<br><b>Done</b><br>
Output for 5.6.25
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000668<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001695<br><b>Done</b><br>
Output for 5.6.24
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000709<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001591<br><b>Done</b><br>
Output for 5.6.23
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000806<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001572<br><b>Done</b><br>
Output for 5.6.22
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000754<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001539<br><b>Done</b><br>
Output for 5.6.21
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000699<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001656<br><b>Done</b><br>
Output for 5.6.20
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000667<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001569<br><b>Done</b><br>
Output for 5.6.19
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000690<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001597<br><b>Done</b><br>
Output for 5.6.18
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.001124<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.002394<br><b>Done</b><br>
Output for 5.6.17
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000770<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001623<br><b>Done</b><br>
Output for 5.6.16
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000702<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001635<br><b>Done</b><br>
Output for 5.6.15
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000678<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001663<br><b>Done</b><br>
Output for 5.6.14
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000670<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001662<br><b>Done</b><br>
Output for 5.6.13
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000704<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001578<br><b>Done</b><br>
Output for 5.6.12
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000798<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001568<br><b>Done</b><br>
Output for 5.6.11
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000758<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001560<br><b>Done</b><br>
Output for 5.6.10
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000705<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001689<br><b>Done</b><br>
Output for 5.6.9
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000670<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001726<br><b>Done</b><br>
Output for 5.6.8
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000667<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001748<br><b>Done</b><br>
Output for 5.6.7
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.001073<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.002480<br><b>Done</b><br>
Output for 5.6.6
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000793<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001555<br><b>Done</b><br>
Output for 5.6.5
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000757<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001672<br><b>Done</b><br>
Output for 5.6.4
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000792<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001586<br><b>Done</b><br>
Output for 5.6.3
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000759<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001601<br><b>Done</b><br>
Output for 5.6.2
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000774<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001568<br><b>Done</b><br>
Output for 5.6.1
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000654<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001703<br><b>Done</b><br>
Output for 5.6.0
array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )array ( 'name' => 'Harold', 'occupation' => 'Bus driver', )<b>changed_1</b><br>&nbsp;&nbsp;&nbsp;0.000665<br><b>changed_2</b><br>&nbsp;&nbsp;&nbsp;0.001741<br><b>Done</b><br>

preferences:
65.79 ms | 1772 KiB | 4 Q