Hi Simon, > I have no need to actually instantiate the class object, but I cannot see > any other way to access the getCharacters() method. Ideally I'd just do: > > Zend::loadClass($className); > $labelChars .= $className::getCharacters();
Try call_user_func() with array($className, 'getCharacters') as the callback identifier. Hope that helps! Best regards, Darby
