Magic Methods in OOP in PHP
PHP methods starting with a double underscore
__
are called magic.
The magic of these methods lies in the fact that they
can be called automatically when some
action is performed.
In the following lessons, we will study the necessary magic methods in PHP.