When I enable syntax highlighting in vim, in PHP I get a red highlight on a semi-colon followed by a single or multiple line comment. I originally thought this was some conflict in vim, but my .vimrc only has syntax enable at this point and I still get the error.
ex://
<?php
require_once 'autoloader.php';
/* Initialize variables */
will display as:

Has anyone else seen this?
require_once('autoloader.php');work?syntax enable.echo "Output";as the first line and if it's doing it, it doesn't matter how many blank lines are in between.