The PHP array is in fact an ordered map that associates values to keys. The access to random numerical indices is considerably slower than it is in languages like Java. Even Javascript array access is significantly faster than PHP. I experienced the slowness of PHP when I programmed Sudoku solutions on the server and switched finally to Python, that was also faster than PHP.
What is the reason that PHP does not provide a proper random access array (for numerical indices)?
To clarify: I am not speaking about randomnes of the entries. I mean direct access via computed indices, e.g. having an array a of 81 values (Sudoku board) and accessing any value a[i] directly without searching a map.
$string[$i]for direct indicies. Would be simple enough and applicable to your Sudoku example. – mario Oct 6 '11 at 15:27