PHP로 워드 문서를 생성하는 방법은 학습에서 자주 볼 수 있습니다.
인터넷에서 PHP를 사용하여 단어 문서를 생성하는 방법은 여러 가지가 있으며, 일부는 COM 구성 요소를 호출하여 생성되고, 일부는 PHP 확장을 설치하여 생성되고, 일부는 phpword와 같은 타사 라이브러리를 참조하여 생성됩니다. 다음은 가장 간단한 두 가지 방법입니다. 다른 것을 설치할 필요가 없습니다. PHP 환경을 설치하면 직접 생성할 수 있습니다.
* @desc 방법 1, 워드 문서 생성
* @param $content * @param string $fileName */function createWord($content='',$fileName='new_file.doc'){ if(empty($content)){ return; } $content='<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http://www.w3.org/TR/REC-html40"> <meta charset="UTF-8" />'.$content.'</html>'; if(empty($fileName)){ $fileName=date('YmdHis').'.doc'; } $fp=fopen($fileName,'wb'); fwrite($fp,$content); fclose($fp); } $str = '<h1 style="color:red;">我是h1</h1><h2>我是h2</h2>'; createWord($str);/**
* @desc 방법 2, 워드 문서 생성 그리고
* @param $content * @param string $fileName */function downloadWord($content, $fileName='new_file.doc'){ if(empty($content)){ return; } header("Cache-Control: no-cache, must-revalidate"); header("Pragma: no-cache"); header("Content-Type: application/octet-stream"); header("Content-Disposition: attachment; filename=$fileName"); $html = '<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">'; $html .= '<head><meta charset="UTF-8" /></head>'; echo $html . '<body>'.$content .'</body></html>'; } $str = '<h4>表头:</h4> <table border="1"> <tr> <th>姓名</th> <th>电话</th> <th>电话</th> </tr> <tr> <td>Bill Gates</td> <td>555 77 854</td> <td>555 77 855</td> </tr> </table>'; downloadWord($str, 'abc.doc');
작업 후 렌더링
PHP에서 워드 문서 생성
PHP에서 워드 문서 생성
이 글에서는 PHP에서 워드 문서를 생성하는 방법을 소개하며, 관련 내용도 있으니 주의해주세요. PHP 중국어 웹사이트에.
관련 추천:
ThinkPhp 캐싱 원리 및 사용법에 대한 자세한 설명
위 내용은 PHP는 단어 문서를 완벽하게 생성하고 HTML 요소를 추가할 수 있습니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!