On Wed, Apr 13, 2011 at 11:04 AM, Floyd Resler <[email protected]>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

