Possible Duplicate: Why do some experienced programmers write comparisons with the value before the variable?
This is mainly to prevent accidental assignment:
if (self::$_instance = null) ... //oops!