私のphpファイルには簡単なテーブルがあります:
<head>
<style><!-- styles go here--></style>
</head>
<body>
<table border="1" align="center">
<thead>
<tr>
<th rowspan=3>Three words here</th>
<th rowspan=3>Full Name</th>
<!-- other headers ... -->
</tr>
<tr></tr>
<tr></tr>
</thead>
<tr>
<td width="50px">content</td>
<!-- other definitions ... -->
</tr>
</table>
</body>
ヘッダー関数を使用する
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=summary.xls");
*.php
ファイルを*.xls
フォーマットにエクスポートしました。そして、Excel
テーブルヘッダーのワードラップを作成しなかったことがわかりました。<th>
ラップせずに内容で要素幅を設定します。なんで?
ありがとう!