Which option is better to save server resources: Array with many values or many variables, each with one value?
Latter the array values will plan to use like this:
array($input[0], array($input[3], array($input[10].
Variables: $input0, $input0, $input10.
Which option is better to save server resources (is it worth to pay attention at all)?