Explanation of the relationship between classes and constructors in php

伊谢尔伦
Release: 2023-03-11 14:36:01
Original
1220 people have browsed it

This article introduces you to the analysis of PHP classes and constructors, including class creation, fields and methods, constructors, etc.

----Creation of a class----

php uses the keyword class to create a class and uses a pair of curly brackets

For example:

class name{
public $n="";
private $u="";
public function name() {
$n="233";
$u="23333";
}
public function rename($newn){
$this->n=$newn;//this表示这个类
}
}
Copy after login

No semicolon at the end. Then $n, $u are fields; name() is a constructor (construct() can also define a constructor, see below for details), which can assign values ​​to fields; rename() is a method.

----Fields and methods----

Compare

$obj=new name();
echo $obj->n;
Copy after login

with

$obj=new name();
echo $obj->u;
Copy after login

The former is executable, but the latter is not possible because private is declared before $u. This is similar to c++.

Code:

public static $nm ="2333333333333333" ;
Copy after login

declares a static field for the function.

The variable can be accessed directly through the class name and ::

echo name::$nm;
Copy after login

This is also similar to c++.

In php, you can also access static fields in the class through self::+$+Variable name. At this time, self is equivalent to $this->.

----Constructor----

In php5 and earlier versions, the constructor has the same name as the class

In php5 and later versions, the magic word construct() can define the constructor

class name{
public $n="";
private $u="";
public function construct() {
$n="233";
$u="23333";
}
public function rename($newn){
$this->n=$newn;
}
}
Copy after login

The constructor can have parameters

construct($name="",$sex="man",$age=0){}
Copy after login

When declaring the object

$obj= new name("我","man",28);
Copy after login

If no parameters are given at this time, the default value is the value after =.

The above is the detailed content of Explanation of the relationship between classes and constructors in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template