I\'m wondering if there is a way to call variable functions with namespaces. Basically I\'m trying to parse tags and send them to template functions so they can render html`
Try this
$p = 'login'; namespace App\login; $test2 = '\App\\'.$p.'\\MyClass'; $test = new $test2;