php以__开头的方法是什么
__construct(), __destruct(), __call(), __callstatic(), __get(), __set(), __isset(), __unset(), __sleep(), __wakeup(), __tostring(), __invoke(), __set_state(), __clone() 和 __debuginfo() 等方法在 php 中被称为魔术方法(magic methods)。在命名自己的类方法时不能使用这些方法名,除非是想使用其魔术功能。
提示:php 将所有以 __(两个下划线)开头的类方法保留为魔术方法。所以在定义类方法时,除了上述魔术方法,建议不要以 __ 为前缀。
以上就是php以__开头的方法是什么的详细内容。