转义<?使用require时在启用了PHP速记的服务器上

我正在尝试要求()我的rss feed模板在php中.不幸的是,我需要在正在使用的服务器上启用速记标签.

我必须以<?xml version =“ 1.0” encoding =“ UTF-8”?>开始我的rss.和&lt ;? …?>使php陷入混乱,以为他必须解析该行代码.

有办法“逃脱”吗?

这只是我要包括在主php文件中的rss模板的完整代码:

<?xml version="1.0" encoding="UTF-8" ?>
    <rss version="2.0">

    <channel>
    <title>Kokodakalo!</title>
    <link>http://127.0.0.1/koko/</link>
    <description>Usluga slična twitteru</description>
        <?php $data = $controller->getData(); foreach($data as $post):?>
        <?php require('views/Rss/item.part.v.htm');?>
        <?php endforeach;?>
    </channel>

    </rss>
</xml>

解决方法:

对于XML文件,<?xml version =“ 1.0” encoding =“ UTF-8”?>是可选的(实际上是您编写时的默认设置),因此您可以删除它,因此可以解决这种情况下的问题.

上一篇:Repeater 实现 OnSelectedIndexChanged


下一篇:antd报错Warning: Instance created by `useForm` is not connected to any Form element