Coding standards - Naming Conventions - Constants.php 120 Bytes
Newer Older
1 2 3 4 5 6
<?php
class Doctrine_SomeClass {
    const MY_CONSTANT = 'something';
}
print Doctrine_SomeClass::MY_CONSTANT;
?>