标签: variables static
是否可以在PHP中使变量变量保持静态?我存储在变量中的东西是类的链接。
由于
答案 0 :(得分:0)
<?php class Foo { public static $bar = 'test'; } echo Foo::$bar; function bar() { static $a = 1; return $a++; } echo bar(); echo bar(); ?>
或者我没理解。