ttt.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. /**
  3. * @desc 方法一、生成word文档
  4. * @param $content
  5. * @param string $fileName
  6. */
  7. function createWord($content = '', $fileName = '')
  8. {
  9. if (empty($content)) {
  10. return;
  11. }
  12. $content='<html
  13. xmlns:o="urn:schemas-microsoft-com:office:office"
  14. xmlns:w="urn:schemas-microsoft-com:office:word"
  15. xmlns="http://www.w3.org/TR/REC-html40">
  16. <meta charset="UTF-8" />'.$content.'</html>';
  17. if (empty($fileName)) {
  18. $fileName = date('YmdHis').'.doc';
  19. }
  20. file_put_contents($fileName, $content);
  21. }
  22. /**
  23. * @desc 方法二、生成word文档并下载
  24. * @param $content
  25. * @param string $fileName
  26. */
  27. function downloadWord($content, $fileName=''){
  28. if(empty($content)){
  29. return;
  30. }
  31. if (empty($fileName)) {
  32. $fileName = date('YmdHis').'.doc';
  33. } // header("location:xxx.doc");
  34. header("Cache-Control: no-cache, must-revalidate");
  35. header("Pragma: no-cache");
  36. header("Content-Type: application/octet-stream");
  37. header("Content-Disposition: attachment; filename={$fileName}");
  38. $html = '<html xmlns:v="urn:schemas-microsoft-com:vml"
  39. xmlns:o="urn:schemas-microsoft-com:office:office"
  40. xmlns:w="urn:schemas-microsoft-com:office:word"
  41. xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
  42. xmlns="http://www.w3.org/TR/REC-html40">';
  43. $html .= '<head><meta http-equiv="Content-Type" content="text/html;charset="UTF-8" /></head>';
  44. echo $html . '<body>'.$content .'</body></html>';
  45. }
  46. //createWord(file_get_contents('https://lidadz.hdlkeji.com/mb.html'));
  47. downloadWord(file_get_contents('https://lidadz.hdlkeji.com/mb.html'));