Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- */
- class MethodTest
- {
- function __call($name, $arguments)
- {
- // Note : Value of $name is case sensitive
- echo "Calling object method '$name'".implode(',', $arguments)."\n";
- }
- // As of PHP 5.3.0
- public static function __callStatic($name, $arguments)
- {
- // Note : Value of $name is case sensitive
- echo "Calling static method '$name'".implode(',', $arguments)."\n";
- }
- }
- $obj = new MethodTest;
- $obj->runTest('In object context');
- MethodTest::runTest('In static context'); // As of PHP 5.3.0
- ?>
Advertisement
Add Comment
Please, Sign In to add comment