<?php
header("Content-Type: application/msword");
header("Content-Disposition: attachment; filename=img.doc");
header("Pragma: no-cache");
header("Expires: 0");$title = "word test on " . date("Y-m-d H:i");echo '<table border="1" cellspacing="2" cellpadding="2" width="90%" align="center">';
echo '<tr bgcolor="#cccccc"><td align="center">' . $title . '</td></tr>';
echo '<tr bgcolor="#f6f7fa">';
echo '<td>图片名称</td>';
echo '</tr>';
echo '<tr><td align="center"><img src="test.gif" border="0"></td></tr>
echo '</table>';
?>