I think that I've been used to a fairly liberal policy regarding the PHP declaration in projects - I've always just used:
<? // here is my php code ?>
I just setup an nginx server using PHP-FPM under FastCGI and now it requires me to declare explicitly:
<?php // here is my php code ?>
Is there any way to change that? (Since otherwise I would have to go into my project and find/replace all of the instances where this occurs).

<?=is always available, whileshort_open_tagis off by default. – Michael Berkowski Apr 4 '12 at 18:11