PHP Magic Predefined Constants & usages
PHP Magic Predefined Constants & usages In PHP, a constant is a name or an identifier for a simple value. A constant name starts with a letter or underscore can be followed by any number of letters, numbers, or underscores. If you have defined a constant, it can never be changed or undefined.   You…

A Quick view on PHP magic methods
Magic Methods in PHP (PHP Magical Reserved Functions Starts with double underscore) According to me you all have heard about the PHP Magic methods. You have also used some of these like __autoload and __construct.   Let’s have a quick view on magic methods, as sometimes it looks like it will hard to use these…