欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php输出xml格式字符串

程序员文章站 2022-03-12 11:03:36
...
复制代码 代码如下:
<?php 
header("Content-type:text/xml;charset=utf-8"); 
$aaa =<<<html 
<?xml version='1.0' encoding='utf-8'?> 
<SubFucParams> 
<Version>1.0.0.0</Version> 
<Publisher>d3e59f1d78f344c682bef3517a4b667f</Publisher> 
<PublisherName>rong</PublisherName> 
<Story> 
<Type>.txt</Type> 
<Title> 
<MainTitle>www</MainTitle> 
</Title> 
<Author> 
<Name>wwww</Name> 
</Author> 
<Source>移动采编</Source> 
<DocContent>Wwwwwww</DocContent> 
<StoryType>Text</StoryType> 
</Story> 
</SubFucParams> 
html; 
echo $aaa; 
?>
相关标签: php