Home Backend Development PHP Tutorial Example of calling PHP5 magic method_PHP tutorial

Example of calling PHP5 magic method_PHP tutorial

Jul 13, 2016 pm 05:53 PM
php5 function Example object method hour of transfer magic

PHP5 magic method

Magic function:

1. __construct()

Constructor: Called when instantiating an object,

When __construct and a constructor with a class name and a function name exist at the same time, __construct will be called and the other will not be called.

2. __destruct()

Destructor: Called when an object is deleted or the object operation terminates (the object is destroyed after the program ends).

It is always executed last.

3. __call()

Object calls a method,

If the method exists, call it directly;

If it does not exist, the __call function will be called.

4. __get()

When reading the attributes of an object, if the attribute exists, the attribute value will be returned directly; if it does not exist, the __get function will be called.

5. __set()

​When setting the properties of an object,

If the attribute exists, assign it directly;

If it does not exist, the __set function will be called.

6. __toString()

Called when printing an object. Such as echo $obj; or print $obj;

7. __clone()

Called when cloning an object. For example: $t=new Test();$t1=clone $t;

8. __sleep()

serialize was called before. If the object is relatively large and you want to delete a few things before serializing, you can consider this function.

9. __wakeup()

It is called when unserialize is used to do some object initialization work.

10. __isset()

Called when checking whether an object's properties exist. For example: isset($c->name).

11. __unset()

​Called when unsetting a property of an object. For example: unset($c->name).

12. __set_state()

​ Called when var_export is called. Use the return value of __set_state as the return value of var_export.

13. __autoload()

When instantiating an object, if the corresponding class does not exist, this method is called.

​Magic Constant

1. __LINE__

Returns the current line number in the file.

2. __FILE__

Returns the full path and file name of the file. If used in an include file, returns the include file name. Since PHP 4.0.2, __FILE__ always contains an absolute path, while previous versions sometimes contained a relative path.

3. __FUNCTION__

Returns the function name (new in PHP 4.3.0). Since PHP 5 this constant returns the name of the function when it was defined (case sensitive). In PHP 4 this value is always lowercase.

4. __CLASS__

Returns the name of the class (new in PHP 4.3.0). Since PHP 5 this constant returns the name of the class when it was defined (case sensitive). In PHP 4 this value is always lowercase.

5. __METHOD__

Returns the method name of the class (newly added in PHP 5.0.0). Returns the name of the method when it was defined (case-sensitive).

(1) First introduction to magic methods

Since the release of Php5.0, it has provided us with many object-oriented features, especially many easy-to-use magic methods. These magic methods allow us to simplify our coding and better design our systems. Today we will learn about the magic methods provided by php5.0.

PHP | Magic methods | __toString(),__clone(),__call(),__autoload() detailed explanation

__toString()

If I have a class:

class Person

{

private $name = “”;

private $age = 0;

function __construct($name = “”, $age = “”)

{

$this->name = $name;

$this->age = $age;

}

function say()

{

echo “name:”.$this->name.”
”.”age:”.$this->age.”
”;

}

}

Now I instantiate this class and then print this instance:

$p1 = new person(“liuzy”,20);

echo $p1; //Direct printing will cause errors

Obviously, printing the object directly will cause an error, because the object is a reference handle and cannot be printed directly. At this time, we can use the __toString() method. We add a __toString() method to the Person class:

function __toString()

{

return “I am Person,my name is “.$this->name.”
”;

}

Then refresh the page. What do you find?

Now we understand that __toString() is a method executed when printing an object directly. We can use this method to print some relevant information about the class. Note: It is two underscores, and the method must have a return value.

__clone()

We know that objects can be assigned values ​​directly, such as

$p2 = $p1; //Here is an object with two references

Then I execute:

$p1->say();

$p2->say();

Both can be executed and have the same effect.

We have another way:

$p3 = clone $p1; //Note that clone is the clone keyword. The difference here from the above is that $p3 is a new object.

At the same time, we add a method to the class:

function __clone()

{

$this->name = "I am a copy"; //Note: $this here is the object itself generated by cloning, not the current class

}

Then we execute:

$p3->say();

Print out:

name:I am a copy

age:20

At this point we understand that the __clone() method is a method executed when cloning an object. Its function is to clone the newly cloned copy

Perform attribute initialization and other operations.

__call()

The main function of this method is to execute the __call() method when an instance of this class calls a non-existent method. Note that you need to add it to the class in advance

Statement:

function __call($fname,$argus)

{

echo "The method you called: ".$fname." does not exist
";

echo "The parameter is".print_r($argus);

}

The declaration contains two parameters. The first parameter is of string type, which is the method name of the non-existent method to be called ($fname). The second parameter is

Array type is the parameter ($argus) of the non-existent method called.

__autoload()

When we usually call a class, we must first introduce the file in which the class is located (include "xxx.php"). If we call many classes on one page, then we have to use many include "xxx.php". php". Obviously this is troublesome.

The __autoload() method can help us solve this problem.

For example, we define the file where the Person class above is located as Person_class.php,

Create a new php file test.php and edit the content:

function __autoload($calssName)

{

include $className.”_class.php”; //Maybe you will understand after seeing this, right? Haha

}

$p = new Person(“mifan”, 22);

$p->say();

In this way, no errors will occur when executing the test.php page.

The __autoload() method is a method called when a class does not exist. It has a string type parameter that declares the class name of the non-existent class.

Of course, the naming of class files is also very particular. It is best to have something to do with a class, such as Person_class.php

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/478060.htmlTechArticlePHP5 magic method magic function: 1. __construct() constructor: Called when instantiating an object. When __construct and a constructor with a class name and a function name exist at the same time, __construct will...
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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

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)

How to recover deleted contacts on WeChat (simple tutorial tells you how to recover deleted contacts) How to recover deleted contacts on WeChat (simple tutorial tells you how to recover deleted contacts) May 01, 2024 pm 12:01 PM

Unfortunately, people often delete certain contacts accidentally for some reasons. WeChat is a widely used social software. To help users solve this problem, this article will introduce how to retrieve deleted contacts in a simple way. 1. Understand the WeChat contact deletion mechanism. This provides us with the possibility to retrieve deleted contacts. The contact deletion mechanism in WeChat removes them from the address book, but does not delete them completely. 2. Use WeChat’s built-in “Contact Book Recovery” function. WeChat provides “Contact Book Recovery” to save time and energy. Users can quickly retrieve previously deleted contacts through this function. 3. Enter the WeChat settings page and click the lower right corner, open the WeChat application "Me" and click the settings icon in the upper right corner to enter the settings page.

How to set font size on mobile phone (easily adjust font size on mobile phone) How to set font size on mobile phone (easily adjust font size on mobile phone) May 07, 2024 pm 03:34 PM

Setting font size has become an important personalization requirement as mobile phones become an important tool in people's daily lives. In order to meet the needs of different users, this article will introduce how to improve the mobile phone use experience and adjust the font size of the mobile phone through simple operations. Why do you need to adjust the font size of your mobile phone - Adjusting the font size can make the text clearer and easier to read - Suitable for the reading needs of users of different ages - Convenient for users with poor vision to use the font size setting function of the mobile phone system - How to enter the system settings interface - In Find and enter the "Display" option in the settings interface - find the "Font Size" option and adjust it. Adjust the font size with a third-party application - download and install an application that supports font size adjustment - open the application and enter the relevant settings interface - according to the individual

The secret of hatching mobile dragon eggs is revealed (step by step to teach you how to successfully hatch mobile dragon eggs) The secret of hatching mobile dragon eggs is revealed (step by step to teach you how to successfully hatch mobile dragon eggs) May 04, 2024 pm 06:01 PM

Mobile games have become an integral part of people's lives with the development of technology. It has attracted the attention of many players with its cute dragon egg image and interesting hatching process, and one of the games that has attracted much attention is the mobile version of Dragon Egg. To help players better cultivate and grow their own dragons in the game, this article will introduce to you how to hatch dragon eggs in the mobile version. 1. Choose the appropriate type of dragon egg. Players need to carefully choose the type of dragon egg that they like and suit themselves, based on the different types of dragon egg attributes and abilities provided in the game. 2. Upgrade the level of the incubation machine. Players need to improve the level of the incubation machine by completing tasks and collecting props. The level of the incubation machine determines the hatching speed and hatching success rate. 3. Collect the resources required for hatching. Players need to be in the game

Tips for dynamically creating new functions in golang functions Tips for dynamically creating new functions in golang functions Apr 25, 2024 pm 02:39 PM

Go language provides two dynamic function creation technologies: closure and reflection. closures allow access to variables within the closure scope, and reflection can create new functions using the FuncOf function. These technologies are useful in customizing HTTP routers, implementing highly customizable systems, and building pluggable components.

Considerations for parameter order in C++ function naming Considerations for parameter order in C++ function naming Apr 24, 2024 pm 04:21 PM

In C++ function naming, it is crucial to consider parameter order to improve readability, reduce errors, and facilitate refactoring. Common parameter order conventions include: action-object, object-action, semantic meaning, and standard library compliance. The optimal order depends on the purpose of the function, parameter types, potential confusion, and language conventions.

How to write efficient and maintainable functions in Java? How to write efficient and maintainable functions in Java? Apr 24, 2024 am 11:33 AM

The key to writing efficient and maintainable Java functions is: keep it simple. Use meaningful naming. Handle special situations. Use appropriate visibility.

How to choose a mobile phone screen protector to protect your mobile phone screen (several key points and tips for purchasing mobile phone screen protectors) How to choose a mobile phone screen protector to protect your mobile phone screen (several key points and tips for purchasing mobile phone screen protectors) May 07, 2024 pm 05:55 PM

Mobile phone film has become one of the indispensable accessories with the popularity of smartphones. To extend its service life, choose a suitable mobile phone film to protect the mobile phone screen. To help readers choose the most suitable mobile phone film for themselves, this article will introduce several key points and techniques for purchasing mobile phone film. Understand the materials and types of mobile phone films: PET film, TPU, etc. Mobile phone films are made of a variety of materials, including tempered glass. PET film is relatively soft, tempered glass film has good scratch resistance, and TPU has good shock-proof performance. It can be decided based on personal preference and needs when choosing. Consider the degree of screen protection. Different types of mobile phone films have different degrees of screen protection. PET film mainly plays an anti-scratch role, while tempered glass film has better drop resistance. You can choose to have better

How to convert MySQL query result array to object? How to convert MySQL query result array to object? Apr 29, 2024 pm 01:09 PM

Here's how to convert a MySQL query result array into an object: Create an empty object array. Loop through the resulting array and create a new object for each row. Use a foreach loop to assign the key-value pairs of each row to the corresponding properties of the new object. Adds a new object to the object array. Close the database connection.

See all articles