Good day. There is a simple function:
public function exec () { $arr = array(); for($i = 0; $i < 5000000; ++$i) $arr['a' . $i] = $i; return $arr; }
Do you think the generation and return time is normal for an array network previously processed with json_encode in 1.2 ~ 2 seconds?
PS note the array is associative.