PHP之static静态变量详解
static用法如下:
- static 放在函数内部修饰变量
- static放在类里修饰属性,或方法
- static放在类的方法里修饰变量
- static修饰在全局作用域的变量
所表示的不同含义如下:
1.在函数执行完后,变量值仍然保存
如下所示:
<?php
function testStatic() {
static $val = 1;
echo $val;
$val++;
}
testStatic(); //1
testStatic(); //2
testStatic(); //3
?>
2.修饰属性或方法,可以通过类名访问,如果是修饰的是类的属性,则保留值
如下所示:
<?php
class Person {
static $id = 0;
function __construct() {
self::$id++;
}
static function getId() {
return self::$id;
}
}
echo Person::$id; //0
echo "<br/>";
$p1=new Person();
$p2=new Person();
$p3=new Person();
echo Person::$id; //3
?>
3.修饰类的方法里面的变量
如下所示:
<?php
class Person {
static function tellAge() {
static $age = 0;
$age++;
echo "The age is: $age
";
}
}
echo Person::tellAge(); //output 'The age is: 1'
echo Person::tellAge(); //output 'The age is: 2'
echo Person::tellAge(); //output 'The age is: 3'
echo Person::tellAge(); //output 'The age is: 4'
?>
4.修饰全局作用域的变量,没有实际意义(存在着作用域的问题,详情查看)
如下所示:
另外:考虑到PHP变量作用域
可以看出:这3个变量是不相互影响的,另外,PHP里面只有全局作用域和函数作用域,没有块作用域。