The php constructor is a special method, mainly used to initialize the object when creating the object; that is, assign initial values to the object member variables, and is always used together with the new operator in the statement to create the object.
When using the new operator to create an instance of a class, the constructor (method) 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.
Grammar:
function __construct(arg1,arg2,...) { ...... }
demo:
Copy after login
The above is the detailed content of What are the php constructors?. For more information, please follow other related articles on the PHP Chinese website!