"map.php"和$this->$name = $value里的=> ,->分别有什么不同"/> "map.php"和$this->$name = $value里的=> ,->分别有什么不同">

Heim >Backend-Entwicklung >PHP-Tutorial >"site map"=>"map.php"和$this->$name = $value里的=> ,->分别有什么不同

"site map"=>"map.php"和$this->$name = $value里的=> ,->分别有什么不同

WBOY
WBOYOriginal
2016-06-23 13:58:46600Durchsuche

"site map"=>"map.php"和$this->$name = $value里的=> ,->分别有什么不同


回复讨论(解决方案)

=> 是数组成员访问符号

-> 是对象成员访问符号

比如:

$array = array("site map"=>"map.php"); //定义了一个数组,包含一个数组成员:键名为site map,值为map.php

$this->$name = $value

$this 在php语言里是个特定的变量,它代表了类本身,->是访问其类成员的操作符,$this->$name = $value,这句代码意思是:将当前类的name变量的值设置为 $value.

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn