Skip to content

Instantly share code, notes, and snippets.

@zhoumengkang
Last active December 17, 2015 06:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhoumengkang/5563463 to your computer and use it in GitHub Desktop.
Save zhoumengkang/5563463 to your computer and use it in GitHub Desktop.
PHP下载网页内容保存为word
header('content-type:charset=utf-8');
header("Content-Type:application/msword");
header("Content-Disposition:attachment;filename={$_GET['type']}.doc");
header("Pragma:no-cache");
header("Expires:0");
echo $_GET['content'];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment