运行 ❯
获取您自己的
PHP
服务器
×
更改方向
更改主题,深色/浅色
前往Spaces
<!DOCTYPE html> <html> <body> <?php $x = 5; // global scope function myTest() { // using x inside this function will generate an error echo "<p>Variable x inside function is: $x</p>"; } myTest(); echo "<p>Variable x outside function is: $x</p>"; ?> </body> </html>
函数内部的变量 x 为
函数外部的变量 x 为:5