const var, self:: or static::



If I have something like...

//
class MyClass
{
const MY_CONST = 10;

...
}
//

Inside the class, is it 'better' to use self::MY_CONST or static::MY_CONST?

I say 'better' because it works in both cases.

Or is it just a personal choice.

Thanks

Simon
.