Home > Article > Backend Development > What does php magic method mean?
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.
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!