The "->" symbol in How to use arrow operator in php is called the arrow operator. The left side of the arrow operator is to obtain the instance of the class, and the right side will specify and call the methods and attributes of the left class. In this article, we will Let’s introduce the method of arrow operator in How to use arrow operator in php.
We use sample code below to illustrate the arrow operator in How to use arrow operator in php.
The syntax defined is as follows.
class 类名{ $属性名1 =“属性1”; $属性名2 =“属性2”; function 方法名1(){ ... 处理过程... } function 方法名2(){ ...处理过程 ... } } }
Next is "instance", but this refers to an instance created from the defined class, which corresponds to the template above. If you specify the new operator and write it as classname(), an instance will be created.
In the following example, the generated instance is assigned to the variable $instance.
$instance = new 类名();
Arrow operator writing method
The arrow operator usage example is as follows.
The following code accesses "property name 1" and "property name 2"
$instance->属性名1; $instance->属性名2;
The following code calls "method 1" and "method 2"
$instance->方法名1(); $instance->方法名2();
us Let’s look at a specific example
Let us use the arrow operator to explicitly specify the class name, attribute name, method name, processing in the method, and access each item in the above example sentence .
This time we define a Person class with its name as an attribute and introductionSelf as a method.
In addition, the __construct() that appears is a special method to be executed when using the new operator to create an instance.
// person类 class Person { // 名称 $name; // 构造函数在实例生成的时的名称设置 function__construct($name) { $this->name = $name; } // 进行自我介绍 function introduceSelf() { echo "我是". $this->name ."同学".PHP_EOL; } } $taro = new Person("张三"); echo $taro->$name.PHP_EOL; // 调用自我介绍方法 $taro->introduceSelf();
This article ends here. For more exciting content, you can pay attention to the relevant tutorial columns of the How to use arrow operator in php Chinese website! ! !
The above is the detailed content of How to use arrow operator in php. For more information, please follow other related articles on the PHP Chinese website!