运行 ❯
获取你的
自己的 PHP
服务器
×
改变方向
改变主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <?php $age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43"); asort($age); foreach($age as $x=>$x_value) { echo "Key=" . $x . ", Value=" . $x_value; echo "<br>"; } ?> </body> </html>