运行 ❯
获取你自己的
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>
键=Peter,值=35
键=Ben,值=37
键=Joe,值=43