Magic Methods
<?php
//MAGIC METHODS WILL AUTOMATICALLY CALL(RUN) BASED ON CONDITION.
//MAGIC METHODS WILL ALWAYS START WITH (__)DOUBLE UNDERSCORES.
//MAGIC METHODS AVAILABLE IN PHP AS SHOWN BELOW:
//__construct(), __destruct(), __get(), __set(), __isset(), __unset(), __autoload(), __clone(),
//__sleep(), __wakeup(), __call(), __callStatic(), __toString(), __invoke()
?>
Comments
Post a Comment