我希望在电子邮件中包含整个 xml 字符串(包括标题、标签等)作为复制/粘贴的备份。如果我使用以下内容:
<?php
$xml_content = file_get_contents('http://www.w3schools.com/xml/note.xml');
echo $xml_content;
?>
它显示: Tove Jani 提醒这个周末不要忘记我!
而不是完整的字符串:
<?xml version="1.0" encoding="ISO-8859-1"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>