Heim >Backend-Entwicklung >PHP-Tutorial >php使用函数方式输出XML文件的例子

php使用函数方式输出XML文件的例子

WBOY
WBOYOriginal
2016-07-25 09:10:311025Durchsuche
  1. $conn= new PDO("mysql:dbname=lamp;host=localhost","root","123456");

  2. $sql="select id,username,phone,*** from user";

  3. $pdo=$conn->prepare($sql);
  4. $pdo->execute();
  5. $str='';
  6. $str.='';
  7. //如果内容中有html代码可以使用
  8. while(list($id,$username,$phone,$***)=$pdo->fetch(PDO::FETCH_NUM)){
  9. $str.='';
  10. $str.=''.$username.'';
  11. $str.=''.$phone.'';
  12. $str.=''.$***.'***>';
  13. $str.='
  14. ';
  15. }
  16. $str.='

  17. ';
  18. file_put_contents("user.xml",$str);
  19. header("Content-type:text/xml");
  20. echo $str;
  21. ?>
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn