Reading List

What is the PHP __call magic method? from David Peach RSS feed.

What is the PHP __call magic method?

Consider this PHP class: We could call the bar method as follows: However, in PHP, we have the ability to call methods that don’t actually exist on a class. They can instead be caught by a “magic method” named __call, which you can define on your class. So if you instantiated the BazClass above and… Continue reading What is the PHP __call magic method?