我是PhpStorm的新手,我在.php文件上声明xml时遇到了问题,我说的问题是PhpStorm是指<? ?>当我在php.ini中设置short_open_tag = Off时作为php开启标签的短开标签. 如何设置PhpStorm以便它不会将短的php开启标签称为php开启标签?
解决方法:
只需将XML放入变量并输出即可:
<?php
$xml = <<<XML
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<T3locallang>
<meta type="array">
<description>CSH for Content Elements Table.</description>
<type>CSH</type>
<csh_table>tt_content</csh_table>
</meta>
</T3locallang>
XML;
echo $xml;
?>
PhpStorm,AFAIK没有其他解决方案.