代码之家  ›  专栏  ›  技术社区  ›  Finbarr

这些PHP标记叫什么?

php
  •  0
  • Finbarr  · 技术社区  · 13 年前

    而不是 <?php print $somevar; ?> <?= $somevar; ?> .

    我问的原因是,我的php配置似乎没有评估这些,我需要知道名称,以便我可以更改php.ini。

    6 回复  |  直到 13 年前
        1
  •  7
  •   ircmaxell    13 年前

    他们被称为 short-tags

    哦,请记住,短标签据说在6年内被弃用,稍后将被删除(对不起,我找不到有效的链接)。。。有一些 distention 在社会上,时间会告诉我们。。。

        2
  •  2
  •   dev-null-dweller    13 年前

    短开放标签

        3
  •  1
  •   netcoder    13 年前

    short_open_tags . 依赖这些被认为是“坏的”,因为它依赖于INI设置并影响代码的可移植性。

        4
  •  1
  •   Wouter Dorgelo voy    13 年前

        5
  •  1
  •   initall    13 年前
    ; Allow the <? tag.  Otherwise, only <?php and <script> tags are recognized.
    ; NOTE: Using short tags should be avoided when developing applications or
    ; libraries that are meant for redistribution, or deployment on PHP
    ; servers which are not under your control, because short tags may not
    ; be supported on the target server. For portable, redistributable code,
    ; be sure not to use short tags.
    short_open_tag = On
    
        6
  •  1
  •   Eric    13 年前

    short_open_tags=在php.ini中打开或关闭