On Wed, Apr 13, 2011 at 11:04 AM, Floyd Resler <fres...@adex-intl.com>wrote:

> That didn't quite work.  Here's what I did:
> $const=$argv[1];
> $value=email::$const;
>

Instead try this:

$const = $argv[1];
$reflector = new ReflectionClass('email');
$value = $reflector->getConstant($const);

David

Reply via email to