<?php
class
Fruit {
const
CONST_VALUE =
'Fruit Color'
;
}
$classname
=
'Fruit'
echo
::CONST_VALUE;
// As of PHP 5.3.0
Fruit::CONST_VALUE;
?>