Home  >  Article  >  Backend Development  >  php __call and __callStatic

php __call and __callStatic

巴扎黑
巴扎黑Original
2016-11-24 13:38:091036browse

PHP5 objects have a new special method __call(), which is used to monitor other methods in an object. If you try to call a method that does not exist on the object, the __call method will be called automatically.

__call() is triggered when invoking inaccessible methods in an object context.

__callStatic() is triggered when invoking inaccessible methods in a static context.

runTest('in object context');
MethodTest::runTest('in static context');  // As of PHP 5.3.0
?>


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
Previous article:php gets local actual IPNext article:php gets local actual IP