Hello,I have a problem;
$test="test";
$qq=new $test;
We can create an object called "test" correctly in PHP.
But if there is a method called "oo" in "test";
And we call the method in this way:
$method="oo()";
$qq->$mothod;
we won't be able to call it .
Is there any solution?