Heim >Backend-Entwicklung >PHP-Tutorial >Wie stelle ich das Papierformat beim Exportieren von Word-Dateien mit PHP ein?

Wie stelle ich das Papierformat beim Exportieren von Word-Dateien mit PHP ein?

WBOY
WBOYOriginal
2016-10-22 00:14:181538Durchsuche

<code>header('Content-type: application/octet-stream');
header("Content-Disposition: attachment; filename=\"路浩内部电话表.doc\"");</code>

?>

<code><!DOCTYPE html>
<html >
<head>
    <meta charset="UTF-8">
    <title>电话表</title>
    <style>
        th, .bm
        {
            font-family: SimHei;
            padding: 5px;
        }
        td
        {
            font-family: FangSong_GB2312;
            font-size: 14px;
            padding: 5px;
        }
        .num
        {
            font-family: 'Times New Roman';
            font-size: 14px;
            padding: 5px;
        }
    </style>
</head>
<body>
    <table border="1" cellpadding="0" cellspacing="0" align="center">
        <caption align="center" style="font-size:24px;padding:15px;font-family: SimHei;">内部电话表</caption>
        <tr>
            <th style="width:150px">部门</th>
            <th style="width:150px">职务</th>
            <th style="width:100px">姓名</th>
            <th style="width:150px">分机</th>
            <th style="width:150px">直拨号</th>
            <th style="width:150px">邮箱</th>
        </tr>
        <tr>
            <th style="width:150px">流程部</th>
            <th style="width:150px">代理人</th>
            <th style="width:100px">张三</th>
            <th style="width:150px">1827</th>
            <th style="width:150px">0302</th>
            <th style="width:150px">7129@qq.com</th>
        </tr>
    </table>
</body>
</html>


</code>

Der Effekt nach dem Ausführen der Exportdatei ist wie folgt:
Wie stelle ich das Papierformat beim Exportieren von Word-Dateien mit PHP ein?
Jetzt möchte ich den folgenden Effekt, das heißt, es auf Papierformat einstellen. Was ist zu tun?
Wie stelle ich das Papierformat beim Exportieren von Word-Dateien mit PHP ein?

Antwortinhalt:

<code>header('Content-type: application/octet-stream');
header("Content-Disposition: attachment; filename=\"路浩内部电话表.doc\"");</code>

?>

<code><!DOCTYPE html>
<html >
<head>
    <meta charset="UTF-8">
    <title>电话表</title>
    <style>
        th, .bm
        {
            font-family: SimHei;
            padding: 5px;
        }
        td
        {
            font-family: FangSong_GB2312;
            font-size: 14px;
            padding: 5px;
        }
        .num
        {
            font-family: 'Times New Roman';
            font-size: 14px;
            padding: 5px;
        }
    </style>
</head>
<body>
    <table border="1" cellpadding="0" cellspacing="0" align="center">
        <caption align="center" style="font-size:24px;padding:15px;font-family: SimHei;">内部电话表</caption>
        <tr>
            <th style="width:150px">部门</th>
            <th style="width:150px">职务</th>
            <th style="width:100px">姓名</th>
            <th style="width:150px">分机</th>
            <th style="width:150px">直拨号</th>
            <th style="width:150px">邮箱</th>
        </tr>
        <tr>
            <th style="width:150px">流程部</th>
            <th style="width:150px">代理人</th>
            <th style="width:100px">张三</th>
            <th style="width:150px">1827</th>
            <th style="width:150px">0302</th>
            <th style="width:150px">7129@qq.com</th>
        </tr>
    </table>
</body>
</html>


</code>

Der Effekt nach dem Ausführen der Exportdatei ist wie folgt:
Wie stelle ich das Papierformat beim Exportieren von Word-Dateien mit PHP ein?
Jetzt möchte ich den folgenden Effekt, das heißt, es auf Papierformat einstellen. Was ist zu tun?
Wie stelle ich das Papierformat beim Exportieren von Word-Dateien mit PHP ein?

Dies ist eine leere Dokumentvorlage. Die Tabellen und anderen Inhalte wurden alle von Ihnen selbst geschrieben?
Dies scheint in der Lage zu sein, eine Dokumentvorlage zu erstellen. Schreiben Sie dann den Variablennamen in den Inhalt der Tabelle und schreiben Sie dann die Daten. Sie können nach Details suchen.

Wie stelle ich das Papierformat beim Exportieren von Word-Dateien mit PHP ein?

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn