I am wondering if there is an easier way to do the same thing than below but with less code.
private $table = array(
array(array(), array(), array(), array(), array()),
array(array(), array(), array(), array(), array()),
array(array(), array(), array(), array(), array()),
...
array(array(), array(), array(), array(), array())
);
I know this is doable in C++, tho not sure if there is something similar in PHP.
Thanks in advance for the help.