<?php

$time_start = microtime(true); 

$data = array();
for ($key = 0; $key <= 1073709056; $key += 32769){
	$data[$key] = 0;
}

$execution_time = (microtime(true) - $time_start);
echo '<b>Total Execution Time:</b> '.$execution_time.' secs';