php 定义边界符 php5 支持 <? ?> _PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > php 定义边界符 php5 支持 <? ?>

php 定义边界符 php5 支持 <? ?>

 2019/1/8 15:38:52  logo32  程序员俱乐部  我要评论(0)
  • 摘要:php4用的是<??>定义边界符php5用的是<?php?>来定义的所以不执行,得改好多文件打开php.ini找到以下代码,把off改成on重起服务,两个就都可以用了。;Allowthe<?tag.Otherwise,only<?phpand<script>tagsarerecognized.;NOTE:Usingshorttagsshouldbeavoidedwhendevelopingapplicationsor
  • 标签:
php4 用的是 <? ?> 定义边界符

php5 用的是 <?php ?> 来定义的

所以不执行,得改好多文件

打开 php.ini 找到以下代码,把 off 改成 on 重起服务,两个就都可以用了。

; 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 = off
  • 相关文章
发表评论
用户名: 匿名