<?php /** * this doc comment will stay together * with constant declaration */ define('MYCLASS_CONSTANT', 'constant value'); /* class constant */ /** * this doc comment will stay together * with MyClass declaration */ class MyClass { } echo MYCLASS_CONSTANT. "<br>"; ?>