- 論壇徽章:
- 0
|
我把代碼從php5.2.5版本部署到另一臺(tái)機(jī)器上php5.3.0版本后,頁(yè)面變成下面的樣子了:
作者E-mail:
" />
作者QQ:
" />
作者聯(lián)系電話:
" />
需要修改的配置項(xiàng)如下(short_open_tag要設(shè)置為On):
; This directive determines whether or not PHP will recognize code between
; tags as PHP source which should be processed as such. It's been
; recommended for several years that you not use the short tag "short cut" and
; instead to use the full tag combination. With the wide spread use
; of XML and use of these tags by other languages, the server can become easily
; confused and end up parsing the wrong code in the wrong context. But because
; this short cut has been a feature for such a long time, it's currently still
; supported for backwards compatibility, but we recommend you don't use them.
; Default Value: On
; Development Value: Off
; Production Value: Off
; http://php.net/short-open-tag
short_open_tag = On
但是不推薦使用這種方式了,推薦使用這種方式
本文來(lái)自ChinaUnix博客,如果查看原文請(qǐng)點(diǎn):http://blog.chinaunix.net/u2/87830/showart_2053803.html |
|