如何通过php将当前网页内容保存到word中
我需要将网页内容保存在word上。我也需要保留链接和格式。如果我发送,
$ter=$ter. "<a href='$url'>".$chunk."</a> ";
$fp = fopen("test.doc", 'w+');
$str = $ter;
fwrite($fp, $str);
fclose($fp);
我会得到一个Word文档,但我失去了链接..它的结果是
a href='http://www.google.com/search?q=sells+sea+shells%0D%0A'>sells sea shells
i need to save contents of webpage on word. i need to keep the links and formating too. if i send
$ter=$ter. "<a href='$url'>".$chunk."</a> ";
$fp = fopen("test.doc", 'w+');
$str = $ter;
fwrite($fp, $str);
fclose($fp);
i get a word document but i loose the links ..it comes out as
a href='http://www.google.com/search?q=sells+sea+shells%0D%0A'>sells sea shells
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
与这个奇怪的假装“.doc”文件一起使用,Word (2007) 确实似乎将其显示为文档;如果我改变你的 fwrite 行:
它有效。
Going along with this weird pretend ".doc" file which Word (2007) does seem to display as a document; if I change your fwrite line:
It works.