## Importing classes without name clashes ```php f(); } function f2() { include("p2.php"); $g->f(); } f1(); f2(); ``` ```php