您已经完成这些练习!
想要重新开始练习吗?
您已完成 W3Schools.com 的 PHP 数组排序练习。
在以下社交平台上分享
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)