App下载

demo_var_global 在线工具

demo_var_global 在线工具

<?php
$x=5;
$y=10;

function myTest()
{
global $x,$y;
$y=$x+$y;
} 

myTest(); // run function
echo $y; // output the new value for variable $y
?>
运行结果