1. What is a constructor (function)?
The constructor (function) method is a special method in the class. When using the new operator to create an instance of a class, the constructor will be automatically called, and its name must be__construct()
.
Only one constructor can be declared in a class, but the constructor will only be called once every time an object is created. This method cannot be called actively, so it is usually used to perform some useful initialization. Task.This method has no return value.
2. Grammar
function __construct(arg1,arg2,...) { ...... }
3.demo
Copy after login
The results are as follows:
The above article is an understanding of __construct(). I hope it can help beginners, thank you!
If you want to know more about PHP, please visit the PHP Chinese website:PHP Video Tutorial
The above is the detailed content of How to use the constructor method (__construct)?. For more information, please follow other related articles on the PHP Chinese website!