What is the way to start with __ in php

Guanhui
Release: 2023-02-28 22:02:01
Original
3838 people have browsed it

What is the way to start with __ in php

What are the methods starting with __ in php

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

Tip: 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 __.

The above is the detailed content of What is the way to start with __ in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!