What's the equivalent to Pythons Tuples in PHP?
i.e
tuple = {'a': ['1', '2', '3'], 'b': ['4', '5', '6']}
Not sure, but it looks like:
$multiDimArray = array('a' => array('1', '2', '3'), 'b' => array('4', '5', '6')); // show the result: echo "<pre>"; print_r($multiDimArray); echo "</pre>";