运行 ❯
获取
您自己的 PHP
服务器
×
更改方向
更改主题,暗模式/亮模式
前往 Spaces
<!DOCTYPE html> <html> <body> <?php $firstname = "Peter"; $lastname = "Griffin"; $age = "41"; $result = compact("firstname", "lastname", "age"); print_r($result); ?> </body> </html>