Access class with only the name of the class as a string
Posted: Wed Jun 02, 2010 12:27 pm
I am attempting to use an already initialized class in a function with only the string name of the class being passed to said function.
Example:
Thanks for the help!
Example:
Code: Select all
class art{
var $moduleInfo = "Hello World";
}
$art = new Art;
getModuleInfo("art");
function getModuleInfo($moduleName){
//I know I need something to happen right here. I don't want to reinitialize the class since it has already been done. I would just like to make it accessible within this function.
echo $moduleName->moduleInfo;
}