可能重复: 如何启用 PHP 短标签?
不知道如何在互联网上搜索这个问题:)
<?p_Stack Overflow中文网
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<?p 问问题
<?php echo 'Hello world'; ?>
有效,但是
<? echo 'Hello world'; ?>
没有。
可能我需要更改 httpd.conf 中的某些内容,但找不到。
在您的 php.ini 文件中,将此属性设置为 on :
short_open_tag = on
这是因为短标签被禁用。
要启用它们,请启用short_open_tagphp.ini中的设置
short_open_tag
打开 php.ini 搜索short_open_tag并;从前面删除
;