'.$content.''; if (empty($fileName)) { $fileName = date('YmdHis').'.doc'; } file_put_contents($fileName, $content); } /** * @desc 方法二、生成word文档并下载 * @param $content * @param string $fileName */ function downloadWord($content, $fileName=''){ if(empty($content)){ return; } if (empty($fileName)) { $fileName = date('YmdHis').'.doc'; } // header("location:xxx.doc"); header("Cache-Control: no-cache, must-revalidate"); header("Pragma: no-cache"); header("Content-Type: application/octet-stream"); header("Content-Disposition: attachment; filename={$fileName}"); $html = ''; $html .= ''; echo $html . ''.$content .''; } //createWord(file_get_contents('https://lidadz.hdlkeji.com/mb.html')); downloadWord(file_get_contents('https://lidadz.hdlkeji.com/mb.html'));