>  기사  >  백엔드 개발  >  PHP로 Word 파일을 내보낼 때 용지 형식을 설정하는 방법은 무엇입니까?

PHP로 Word 파일을 내보낼 때 용지 형식을 설정하는 방법은 무엇입니까?

WBOY
WBOY원래의
2016-10-22 00:14:181507검색

<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>

내보내기 파일 실행 후 효과는 아래와 같습니다.
PHP로 Word 파일을 내보낼 때 용지 형식을 설정하는 방법은 무엇입니까?
이제 다음 효과를 원합니다. 즉, 종이 형식으로 설정합니다. 무엇을 해야 합니까?
PHP로 Word 파일을 내보낼 때 용지 형식을 설정하는 방법은 무엇입니까?

답글 내용:

<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>

내보내기 파일 실행 후 효과는 아래와 같습니다.
PHP로 Word 파일을 내보낼 때 용지 형식을 설정하는 방법은 무엇입니까?
이제 다음 효과를 원합니다. 즉, 종이 형식으로 설정합니다. 무엇을 해야 합니까?
PHP로 Word 파일을 내보낼 때 용지 형식을 설정하는 방법은 무엇입니까?

빈 문서 템플릿입니다. 표와 기타 내용은 모두 직접 작성하셨나요?
이렇게 하면 문서 템플릿을 만들 수 있을 것 같습니다. 그러면 테이블 내용에 변수 이름을 쓴 다음 데이터를 작성하면 됩니다

PHP로 Word 파일을 내보낼 때 용지 형식을 설정하는 방법은 무엇입니까?

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.