<?php class MyClass { const CONSTANT = 'constant value'; function showConstant() { echo self::CONSTANT . " "; } } echo MyClass::CONSTANT . " "; ?>