__CLASS__ magic constant returns the same result as get_class() function called without parameters and they both return the name of the class where it was defined (i.e. where you wrote the function call/constant name ).
In contrast, get_class($this) and get_called_class() functions call, will both ...