php short_open_tag problem

前端 未结 2 1579
小蘑菇
小蘑菇 2020-12-22 05:44

hi i am working on a project of my college but my college server admin told me that we don’t use short_open_tag in our code what’s its mean? what is short open tag and what

2条回答
  •  醉梦人生
    2020-12-22 06:09

    Normally you write PHP like so: . However if allow_short_tags directive is enabled you're able to use: . Also sort tags provides extra syntax: which is equal to .

    Short tags might seem cool but they're not. They causes only more problems. Oh... and IIRC they'll be removed from PHP6.

提交回复
热议问题