标签:下标 class oba div nbsp 访问 函数 执行 全局
<?php $num1 = 15; $num2 = 15.5; echo $num1+$num2; echo "<br>"; ?>
<?php $x = 5;//Global function myTest(){ $y = 10;//Local echo "x:$x"; echo "<br>"; echo "y:$y"; echo "<br>"; } myTest(); echo "<hr>"; echo "x:$x"; echo "<br>"; echo "y:$y"; ?>
<?php $c = 10; $d = 20; function test(){ global $c, $d, $f; $f = $c + $d; } test(); echo "$f"; ?>
<?php $x = 5; $y = 15; function test4(){ $GLOBALS[‘y‘] = $GLOBALS[‘y‘] + $GLOBALS[‘x‘]; } test4(); echo "$y"; ?>
通常,当函数完成/执行后,会删除所有变量。不过,有时我需要不删除某个局部变量。实现这一点需要更进一步的工作。要完成这一点,请在您首次声明变量时使用 static 关键词:
<?php function myTest() { static $x=0; echo $x; $x++; } myTest(); myTest(); myTest(); ?>
标签:下标 class oba div nbsp 访问 函数 执行 全局
原文地址:http://www.cnblogs.com/noper/p/6209969.html