我正在通过exec在PHP中执行外部命令,我接受该输出(这是一个数组),然后让各个字符串搜索特定的字符串。然后我希望将这些字符串回显到屏幕上。但是,其中一些字符串包含XML示例,并且它们正在被剥离。如何防止PHP剥离XML?我使用PHP 5.6.2。
例如,我试图回显具有以下输出的$ val:
Missing test tag. Please add the test tag and set it to true. i.e. <data><test>true</test></data>.
但我得到以下内容:
Missing test tag. Please add the test tag and set it to true. i.e. true.
正如您所看到的,&#34;数据&#34;和&#34;测试&#34; xml标签被剥离。