header('Content-Type: application/ms word');
header("Content-Disposition: attachment; filename = filename.docx");
header('Content-Transfer-Encoding: binary');
header("Pragma: no-cache");
header("Expires: 0");
header('Cache-Control: must-revalidate');
我使用上面的代码从数据库中下载了一个包含一些数据的 word 文件。
现在,我想在文件的每一页上添加公司的徽标和名称、页码。我应该怎么做?