当前位置:首页 > PHP教程 > php应用 > 列表

php中的静态变量的基本用法

发布:smiling 来源: PHP粉丝网  添加日期:2020-11-01 22:00:57 浏览: 评论:0 

静态变量只存在于函数作用域内,静态变量只存活在栈中。一般的函数内变量在函数结束后会释放,比如局部变量,但是静态变量却不会。下次再调用这个函数的时候,该变量的值会保留下来。

静态的变量的基本用法

1. 在类中定义静态变量

[访问修饰符] static $变量名;

2. 如何访问静态变量

如果在类中访问 有两种方法 self::$静态变量名 , 类名::$静态变量名

如果在类外访问: 有一种方法 类名::$静态变量名

例子代码如下:

  1. class Child{  
  2.  
  3. public $name;  
  4. //这里定义并初始化一个静态变量 $nums  
  5. public static $nums=0;  
  6. function __construct($name){  
  7.  
  8. $this->name=$name;  
  9. }  
  10.  
  11. public function join_game(){  
  12.  
  13. //self::$nums 使用静态变量  
  14. self::$nums+=1;  
  15.  
  16. echo $this->name."加入堆雪人游戏";  
  17.  
  18. }  
  19.  
  20.  
  21. }  
  22.  
  23. //创建三个小孩  
  24.  
  25. $child1=new Child("李逵");  
  26. $child1->join_game();  
  27. $child2=new Child("张飞");  
  28. $child2->join_game();  
  29. $child3=new Child("唐僧");  
  30. $child3->join_game();  
  31.  
  32. //看看有多少人玩游戏  
  33. echo "<br/> 有这".Child::$nums

Tags: php静态变量

分享到: