<?php $array_2 = []; for($i=1;$i<=1000;++$i){ $temp = []; for($j=1;$j<=1000;++$j){ $temp[] = rand(1,100); } $array_2[] = $temp; } echo array_sum(array_reduce($array_2, 'array_merge', []));
You have javascript disabled. You will not be able to edit any code.