PHP denying use of short hand “<?”

前端 未结 3 1427
栀梦
栀梦 2020-12-06 21:52

I just installed php 5.3.0 and it won\'t run php scripts utilizing short open tags like

相关标签:
3条回答
  • 2020-12-06 22:06

    You need to update your php.ini file.

    Set short_open_tag = 1

    See the PHP Manual

    0 讨论(0)
  • 2020-12-06 22:14

    http://us2.php.net/manual/en/ini.core.php

    you need to

    ini_set("short_open_tag", 1)
    

    or adjust your systems php.ini file.

    0 讨论(0)
  • 2020-12-06 22:19

    That's because it's simply a bad practice. I suggest re-converting all your scripts to use <?php. If you're lazy, you can use a find and replace, if you have access to powerful command lines like bash you can use sed to do this for you.

    0 讨论(0)
提交回复
热议问题