Use Alias¶
The use operator can create aliases for a class, function or constant. After the declaration of the alias, it is possible to use the original class with the alias name.
<?php
use A as B;
class A {}
new A;
new B;
?>
Related : Alias, As, Namespace Alias, Namespaces, Use