class_alias in PHP

Syntax of class_alias bool class_alias(string name, string alias) Creates an alias to the class name. From then on, you can reference the class (for example, to instantiate objects) with either name or alias. Returns true if the alias could be created; if not, it returns false. Example of class_alias