For example variable dollar signs.
php-mode.el line 1087:
'("\\$\\(\\(?:\\sw\\|\\s_\\)+\\)" (1 font-lock-variable-name-face)) ; $variable
If I'm not mistaken the regexp should match $variable including the dollar sign. Now, i'm trying to figure out why isn't the font-lock property applied to the dollar sign also. In the syntax table $ is considered a word just like A-z.
So i guess what i'm trying to ask is: Did anyone experienced the same problem and has he/she found a solution?