Home  >  Article  >  Backend Development  >  What does php magic method mean?

What does php magic method mean?

藏色散人
藏色散人Original
2020-06-30 10:32:152760browse

php magic method means that all class methods starting with "__", that is, two underscores, in php are reserved as magic methods. You cannot use magic method names when naming your own class methods, unless you want to use Its magic function.

What does php magic method mean?

php magic method

__construct(), __destruct(), __call(), __callStatic( ), __get(), __set(), __isset(), __unset(), __sleep(), __wakeup(), __toString(), __invoke(), __set_state(), __clone() and __debugInfo() and other methods in PHP are called Magic methods. You cannot use these method names when naming your own class methods unless you want to use their magic functionality.

PHP reserves all class methods starting with __ (two underscores) as magic methods. Therefore, when defining class methods, except for the above magic methods, it is recommended not to prefix them with __.

For more related knowledge, please visit PHP Chinese website!

The above is the detailed content of What does php magic method mean?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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