Home Backend Development PHP Tutorial Summary of PHP constructor declaration and usage_PHP tutorial

Summary of PHP constructor declaration and usage_PHP tutorial

Jul 15, 2016 pm 01:27 PM
php one time use function and statement Summarize Compare use Research still

PHP is still relatively commonly used, so I studied the PHP constructor and shared it with you here. I hope it will be useful to everyone. If you declare a function in a class, named __construct, the function will be treated as a constructor and executed when creating an object instance. To be clear, __ is two underscores. Just like any other function Likewise, a constructor may have parameters or default values. You can define a class to create an object and put all its properties in a statement.

You can also define a class called __destruct Function, PHP will call this function before the object is destroyed. It is called the destructor. Inheritance is a powerful feature of classes. A class (subclass/derived class) can inherit another class (parent class/base class) Function. The derived class will contain all the properties and methods of the base class, and can add other properties and methods in the derived class. You can also override the methods and properties of the base class. As shown in 3.1.2, you You can use the extends keyword to inherit a class.

You may wonder how constructors are inherited. When they are inherited along with other methods, they will not be executed when the object is created. If you If you need this function, you need to use the :: operator mentioned in Chapter 2. It allows you to point to a namespace. parent points to the parent class namespace, and you can use parent::__construct to call the parent class's constructor.

Some object-oriented languages ​​name the constructor after the class. The same was true for the first few versions of PHP, and this method still works. That is: if you put If a class is named Animal and a method named Animal is created in it, this method is a constructor. If a class has both a __construt constructor and a function with the same name as the class, PHP will treat __construct as a constructor .This allows classes written in previous PHP versions to still be used. But new scripts (PHP5) should use __construct.

PHP’s new method of declaring constructors allows the constructor to have A unique name, regardless of the name of the class it is in. This way you don't need to change the name of the constructor when you change the name of the class. You may give the constructor in PHP the same access method as other class methods. The access method will affect the ability to instantiate objects from a certain scope. This allows the implementation of some fixed design patterns, such as the Singleton pattern. Destructors, as opposed to constructors, are called by PHP to destroy an object from memory. By default, PHP only releases the memory occupied by the object's properties and destroys the resources associated with the object. Destructors allow you to execute arbitrary code to clear memory after using an object.

When PHP decides that your script no longer When associated with an object, the destructor will be called. Within a function's namespace, this happens when the function returns. For global variables, this happens at the end of the script. If you want to explicitly destroy an object, You can assign any other value to the variable pointing to the object. Usually assign the variable to NULL or call unset.

In the following example, the number of objects instantiated from the class is counted. The Counter class is derived from The PHP constructor begins to increment and the destructor decrements. Once you define a class, you can use new to create an instance of the class. The definition of the class is the design drawing, and the instance is the component placed on the assembly line. New Requires the name of the class and returns an instance of the class. If the PHP constructor requires parameters, you should enter the parameters after new.

<ol class="dp-xml">
<li class="alt"><span><span> </span></span></li>
<li class="">
<span></span><strong><font color="#006699"><span class="tag"><?</SPAN><SPAN class=tag-name>phpclassCounter</SPAN></FONT></STRONG><SPAN> </SPAN></SPAN><LI class=alt><SPAN>{  </SPAN><LI class=""><SPAN>privatestatic$</SPAN><SPAN class=attribute><FONT color=#ff0000>count</FONT></SPAN><SPAN>=</SPAN><SPAN class=attribute-value><FONT color=#0000ff>0</FONT></SPAN><SPAN>;  </SPAN></SPAN><LI class=alt><SPAN>function__construct()  </SPAN><LI class=""><SPAN>{  </SPAN><LI class=alt><SPAN>self::$count++;  </SPAN><LI class=""><SPAN>}  </SPAN><LI class=alt><SPAN>function__destruct()  </SPAN><LI class=""><SPAN>{  </SPAN><LI class=alt><SPAN>self::$count--;  </SPAN><LI class=""><SPAN>}  </SPAN><LI class=alt><SPAN>functiongetCount()  </SPAN><LI class=""><SPAN>{  </SPAN><LI class=alt><SPAN>returnself::$count;  </SPAN><LI class=""><SPAN>}  </SPAN><LI class=alt><SPAN>}  </SPAN><LI class=""><SPAN>//建立第一个实例  </SPAN><LI class=alt><SPAN>$</SPAN><SPAN class=attribute><FONT color=#ff0000>c</FONT></SPAN><SPAN>=</SPAN><SPAN class=attribute-value><FONT color=#0000ff>newCounter</FONT></SPAN><SPAN>();//输出1  </SPAN></SPAN><LI class=""><SPAN>print($c-</SPAN><SPAN class=tag><STRONG><FONT color=#006699>></span></font></strong><span>getCount()."</span><strong><font color="#006699"><span class="tag"><</SPAN><SPAN class=tag-name>br</SPAN><SPAN class=tag>></span></font></strong><span>n");  </span>
</li>
<li class="alt"><span>//建立第二个实例  </span></li>
<li class="">
<span>$</span><span class="attribute"><font color="#ff0000">c2</font></span><span>=</span><span class="attribute-value"><font color="#0000ff">newCounter</font></span><span>();  </span>
</li>
<li class="alt"><span>//输出2  </span></li>
<li class="">
<span>print($c-</span><span class="tag"><strong><font color="#006699">></font></strong></span><span>getCount()."</span><strong><font color="#006699"><span class="tag"><</SPAN><SPAN class=tag-name>br</SPAN><SPAN class=tag>></span></font></strong><span>n");  </span>
</li>
<li class="alt"><span>//销毁实例  </span></li>
<li class="">
<span>$</span><span class="attribute"><font color="#ff0000">c2</font></span><span>=</span><span class="attribute-value"><font color="#0000ff">NULL</font></span><span>;  </span>
</li>
<li class="alt"><span>//输出1  </span></li>
<li class="">
<span>print($c-</span><span class="tag"><strong><font color="#006699">></font></strong></span><span>getCount()."</span><strong><font color="#006699"><span class="tag"><</SPAN><SPAN class=tag-name>br</SPAN><SPAN class=tag>></span></font></strong><span>n");</span><span class="tag"><strong><font color="#006699">?></font></strong></span><span> </span>
</li>
</ol>
Copy after login

When you create a new instance, memory will be prepared for storage All properties. Each instance has its own unique set of properties. But methods are shared by all instances of the class.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/446533.htmlTechArticlePHP is still relatively commonly used, so I studied the PHP constructor and shared it with you here. Hope it's useful to everyone. If you declare a function in a class, name it...
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles