Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What do & gt; and-& gt; refer to in php

2025-04-26 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly explains the "php = > and-> refers to what", the article explains the content is simple and clear, easy to learn and understand, the following please follow the editor's ideas slowly in-depth, together to study and learn "php = > and-> refers to what" it!

In PHP, "= >" is an array operator that corresponds to the key value and key name in the array with the syntax of "array (key = > value)" and "- >" to refer to the methods and properties of the class instance with the syntax of "$obj- > a".

This article operating environment: Windows10 system, PHP7.1 version, Dell G3 computer.

What do "= >" and "- >" in php mean?

1. The meaning of = >,->:

-> is used by an object to execute a method or get a property.

= > is applied to the key and value pairs in the array.

II. Usage

1. The use of = > the relationship between key and value in an array for example:

$a = array ('0' = >'1'); echo $a ['0']; echo $a ['2']

2. The methods and properties used to reference an instance of the class in the usage class of-> for example:

Class Test {function add () {return $this- > var++;} var $var = 0;} $a = new Test; / / instantiated object name echo $a-> add (); echo $a-> var

Extended data

The-> code in PHP is as follows:

The = > code in PHP is as follows:

Thank you for your reading, the above is the "php = > and-> refers to what" the content, after the study of this article, I believe you in the php and-> refers to what this problem has a deeper understanding, the specific use of the need for you to practice and verify. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report