如何通过php保存当前网页的内容

时间:2010-12-11 07:31:47

标签: php ms-word webpage

我需要在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

2 个答案:

答案 0 :(得分:0)

同时使用这个奇怪的假装“.doc”文件,Word(2007)似乎确实显示为文档;如果我改变你的fwrite线:

fwrite($fp,  '<html><body>' . $str . '</body></html>');

有效。

答案 1 :(得分:0)

您可能不会在Stack Overflow上阅读相关问题。我想你会在这里找到很多有用的信息:

Create Word Document using PHP in Linux