You have already completed these exercises!
Do you want to take them again?
You completed the PHP Sorting Arrays Exercises from W3Schools.com
Share on:
What will the array look like after the sort:$x = array('Pete'=>35, 'Ben'=>37, 'Joe'=>43);ksort($x);
$x = array('Pete'=>35, 'Ben'=>37, 'Joe'=>43);ksort($x);
('Pete'=>35, 'Ben'=>37, 'Joe'=>43)
('Joe'=>43, 'Pete'=>35, 'Ben'=>37)
('Ben'=>37, 'Joe'=>43, 'Pete'=>35)