php下载word的方式

有时候需要把页面的内容下载成word,如简历,应聘时需要下载word并打印。

下载word的几种方式:

1.直接的方式(比较繁琐)

导出word
    public function Word(){
        $id=I('get.id');
        $user=M('user')->where(array('id'=>$id))->find();
        $html='名字';
        $html.='';
        $html.='';
        $html.='

'.$user['name'].'

'; header("Cache-Control:no-cache,must-revalidate"); header("Pragma:no-cache"); header("Content-Type:application/vnd.ms-word"); header("Content-Disposition:attachment;filename=".$declare['projectname'].".doc"); echo $html; }

2.phpword插件的方式(下载地址:http://download.csdn.net/detail/arthur613/8073409)

 

 

你可能感兴趣的:(php)