运行 ❯
获取您自己的
PHP
服务器
×
更改方向
更改主题,亮色/暗色
转到 Spaces
<!DOCTYPE html> <html> <body> <?php function myfunction() { $GLOBALS["x"] = 100; } myfunction(); echo $GLOBALS["x"]; echo $x; ?> </body> </html>
100100