In PHP, how can a class reference its own name?
For example, what would the method look like to do this?
Dog::sayOwnClassName(); //echos \"Dog\";
use the magic constant __CLASS__
__CLASS__