码迷,mamicode.com
首页 > Web开发 > 详细

转: PHP的"::"、"->"和"=>"的区别

时间:2017-08-06 10:45:30      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:一个   方法   静态   val   key   article   details   log   运算符   

来自:http://blog.csdn.net/wgw335363240/article/details/20453379

1."::" 运算法

  该运算符是调用一个类中的静态成员的方法,如:

 class xxx{

  protected static $instance;

 self::$instance="111";

或者 $this::$instance = "222";

}

2."->"运算符

 该操作符是操作一个类中的成员变量的方法,可以是非static成员变量,如:

 class xxx{

  private $test;

 $this-test="111";

}

3."=>"运算符

 该预算付是数组的key和value映射时使用的运算符。

语法“index => values”,用逗号分开,定义了索引和值。

转: PHP的"::"、"->"和"=>"的区别

标签:一个   方法   静态   val   key   article   details   log   运算符   

原文地址:http://www.cnblogs.com/mrszhou/p/7293768.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!