vote up 14 vote down star
6

Here's the info according to the official documentation:

There are four different pairs of opening and closing tags which can be used in php. Two of those, < ? php ?> and < script language="php"> < /script>, are always available. The other two are short tags and ASP style tags, and can be turned on and off from the php.ini configuration file. As such, while some people find short tags and ASP style tags convenient, they are less portable, and generally not recommended.

In my experience most servers do have short tags enabled. Typing

<?=

is far more convenient than typing

<?php echo

The programmers convenience is an important factor, so why are they not recommended?

flag

11 Answers

vote up 22 vote down check

They're not recommended because it's a PITA if you ever have to move your code to a server where it's not supported (and you can't enable it). As you say, lots of shared hosts do support shorttags but "lots" isn't all of them. If you want to share your scripts, it's best to use the full syntax.

I agree that <? and <?= are easier on programmers than <?php and <?php echo but it is possible to do a bulk find-and-replace as long as you use the same form each time (and don't chuck in spaces (eg: <? php or <? =)

I don't buy readability as a reason at all. Most serious developers have the option of syntax highlighting available to them.

link|flag
So, explanation is: They are bad because they are not supported? But why are they not supported? Because they are not part of specification? Ok, but why they are not part of specification? I am bit disapointed with this answer. – Josef Sábl Nov 30 at 22:34
I'm not here to discuss the "big questions" like why we're here, how did it all begin, etc. Shorttag support is not guaranteed on shared servers and it's being removed completely next major version. That's all you need to know. – Oli 2 days ago
vote up 0 vote down

Let's face it PHP if fugly as hell without short tags.

You can enable them in a .htaccess file if you can't get to the php.ini:

php_flag short_open_tag on

link|flag
That won't always work. I get "php_flag not allowed here" – MDCore Nov 10 at 11:41
vote up 0 vote down
  • Short tags are acceptable to use in cases where you are certain the server will support it and that your developers will understand it.
  • Many servers do not support it, and many developers will understand it after seeing it once.
  • I use full tags to ensure portability, since it's really not that bad.

With that said, a friend of mine said this, in support of alternate standardized asp-style tags, like <% rather than <?, which is a setting in php.ini called asp_tags. Here is his reasoning:

... arbitrary conventions should be standardized. That is, any time we are faced with a set of possibilities that are all of equal value - such as what weird punctuation our programming language should use to demarcate itself - we should pick one standard way and stick with it. That way we reduce the learning curve of all languages (or whatever the things the convention pertains to).

Sounds good to me, but I don't think any of us can circle the wagons around this cause. In the meantime, I would stick to the full <?php.

link|flag
vote up 3 vote down

Short tags are coming back thanks to Zend Framework pushing the "PHP as a template language" in their default MVC configuration. I don't see what the debate is about, most of the software you will produce during your lifetime will operate on a server you or your company will control. As long as you keep yourself consistent, there shouldn't be any problems.

link|flag
I freelance and all my code goes onto shared hosting, so no control at all! :) – MDCore Oct 22 '08 at 4:01
1  
If you have enough clients move to you own coloc, shared hosting is insecure and unstable. – jakemcgraw Nov 6 '08 at 15:57
vote up 1 vote down

If you care about XSS then you should use <?= htmlspecialchars(…) ?> most of the time, so short tag doesn't make a big difference.

Use <?php tags and templating engines :)

link|flag
If you find yourself typing "<?php echo htmlspecialchars($text, ENT_QUOTES, 'UTF-8'); ?> 500 times a day, you might want to create a shortcut function named "h" like Rails has.. "<?= h($text) ?>" is just so much more readable when scanning a template. – Alexander Malfait Jul 26 at 12:21
It is better indeed, but with a template engine it may be simply ${text} or such (and you don't have to remember to add h()) – porneL Jul 26 at 21:41
vote up 2 vote down

In response to patricksweeney:- (sorry, I would comment on your original point, but I don't have enough reputation yet :))

Yes, codeigniter encourages using short tags, but there's a good reason for that - there's a configuration option that will rewrite short tags to full < ?php tags when you switch it on.

This means you can use this option guilt-free, safe in the knowledge that it's easily portable if there's a server move at a later date.

link|flag
vote up 13 vote down

No, and they're being phased out by PHP 6 so if you appreciate code longevity, simply don't use them or the <% ... %> tags.

link|flag
I've seen other blog posts that say they're not going to be deprecated, just the ASP style short tags. – MDCore Oct 16 '08 at 10:18
Thanks for the pointer to the slides. More ammo! – Andy Lester Oct 21 '08 at 21:03
They're phasing out "short open tags" (thankfully) <? ?>, I'm not sure if that includes <?= ?> (i hope it doesn't) – enobrev Dec 5 '08 at 20:41
1  
It looks like this answer is incorrect, according to this link from the PHP Developers meeting: php.net/~derick/… – Charles Nov 4 at 20:59
WHY are they so bad, whyyy? Everybody is so self confident that they are baaaaaad but nobody says why. – Josef Sábl Nov 30 at 22:37
vote up 5 vote down

I'm too fond of <?=$whatever?> to let it go. Never had a problem with it. I'll wait until it bites me in the ass. In all seriousness, 85% of (my) clients have access to php.ini in the rare occasion they are turned off. The other 15% use mainstream hosting providers, and virtually all of them have them enabled. I love 'em.

link|flag
vote up 1 vote down

One situation that is a little different is when developing a CodeIgniter app. CI seems to use the shorttags whenever php is being used in a template/view, otherwise with models and controllers it always uses the long tags. It's not a hard and fast rule in the framework but for the most part the framework and a lot of the source from other uses follows this convention. My two cents? If you never plan on running the code somewhere else, then use them if you want. I'd rather not have to do a massive search and replace when I realize it was a dumb idea.

link|flag
vote up 8 vote down
  • Short tags are not turned on by default in some webservers (shared hosts, etc), so code portability becomes an issue if you need to move to one of these.

  • Readability may be an issue for some. Many developers may find that <?php catches the eye as a more obvious marker of the beginning of a code block than <? when you scan a file, particularly if you're stuck with a code base with html and PHP tightly inter-woven.

link|flag
Short tags are enabled in 95% of webservers. – Paolo Bergantino Oct 16 '08 at 1:31
1  
Fair point, baseless "many" removed! – ConroyP Oct 16 '08 at 11:22
vote up 7 vote down

Because the confusion it can generate with XML declarations. Many people agree with you, though.

An additional concern is the pain it'd generate to code everything with short tags only to find out at the end that the final hosting server has them turned off...

link|flag
Won't the XML declaration cause confusion anyway if short_tags is on? – MDCore Oct 14 '08 at 10:25
yes, and that's why they are not recommended – Vinko Vrsalovic Oct 14 '08 at 10:29
So instead of directly outputting the XML declaration, you have PHP echo it. It's not really a good refute. – orlandu63 Oct 14 '08 at 22:16
It's not a refutal of anything. It's the only actual reason which in turn is the cause for the other reason "hoster turns it off", of course you can use it if you know what you are doing, as always. – Vinko Vrsalovic Jul 29 at 19:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.