如何PHP回显数据到.Txt文件没有HTML代码周围的数据

时间:2014-03-03 20:26:26

标签: php html

我有一个页面,其中包含指向我的day.php页面的链接。链接是<a href="day.php">this day</a>,它应该创建一个文本文件,其中包含今天的星期几。例如,文本文件只有星期一,因为我在星期一问这个问题。现在,它创建文本文件并正确地写出星期几。我的问题是它围绕着HTML代码中的星期几。

以下是我的day.php网页代码:

<!doctype html>
<html>
   <head>
     <meta charset="utf-8">
     <title>Untitled Document</title>
   </head>

<body>
  <?php
    header('Content-type: application/txt');
    header('Content-Disposition: attachment; filename="day.txt"');
    echo date("l");
    echo "\r\n";
  ?>
</body>
</html>

以下是我在创建的文本文件day.txt中获得的内容:

<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
  </head>

<body>
  Monday
</body>
</html>

当我想要的只是Monday

如果有人知道我的问题的解决方案,将不胜感激。谢谢你的帮助。

1 个答案:

答案 0 :(得分:1)

你拥有php文件中的所有HTML,只需删除它

<?php
header('Content-type: application/txt');
header('Content-Disposition: attachment; filename="day.txt"');
echo date("l");
echo "\r\n";
?>