Prior to PHP 5.4, all PHP experts say that we should not use the short open tag (for various reasons), but since PHP 5.4, it is enabled by default again.
So I wanted to know if you are going to keep the “good practice” and does not use or otherwise you will use in your new projects?
I dont, as a software developer I am creating a script used by primarily users running free/shared webhosts, cant assume most of them enable short tags.
What doesn’t make sense to me is that while a number of people just rave on about how short tags are evil, they have no issues using similar shorthand when provided by a template engine so they can do something like:
Myself included, everyone tries to shorten css. But css is handled client side. Php server side. I would guess server side is faster so shortening has less effect.