运行 ❯
获取你
自己的 PHP
服务器
×
更换方向
更换主题,暗色/亮色
转到 Spaces
<!DOCTYPE html> <html> <body> <?php $people = array("Peter", "Joe", "Glenn", "Cleveland"); echo current($people) . "<br>"; echo end($people); ?> </body> </html>