Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,038

HOME > บทความจากสมาชิก > PHPWord Library สร้างไฟล์ Word Document ด้วย PHP (Word 2003 , Word 2007)


 

PHPWord Library สร้างไฟล์ Word Document ด้วย PHP (Word 2003 , Word 2007)

PHPWord Library สร้างไฟล์ Word Document (doc,docx) ด้วย PHP (Word 2003 , Word 2007) ก่อนหน่้านี้ได้ก็ review library ของ PHPExcel ไปแล้ว 1-2 บทความ ถึงความสามารถและความง่ายต่อกการใช้งาน และบทความนี้จะแนะนำ PHPWord เป็น Library น้องใหม่ที่เกิดไม่ยังไม่ถึงปีและอยู่ในช่วง Version Beta ให้ดาวน์โหลดไปทดลองใช้กัน

PHPWord Logo

คุณสมบัติโดดเด่นก็คือ ใช้งานได้ง่าย รองรับการทำงานได้ทั้ง Windows และ Linux Server ไม่ต้องอาศัยการทำงานผ่าน COM Word.Application และยังรองรับการทำงานได้ทั้ง Word ใน Version ของ Office 2003 (.doc) และ Office 2007 (.docx)


Screenshot

PHPWord


Download LiBrary PHPWord


เมื่อดาวน์โหลดและแตกไฟล์ออกมา จะมีโฟเดอร์ Examples ซึ่งเป้นตัวอย่างการใช้งานในรูปแบบต่าง ๆ

ตัวอย่างที่ 1 สร้างไฟล์ Word แบบง่าย ๆ

CreateWord1.php
01.<?php
02.    require_once 'PHPWord.php';
03. 
04.    // New Word Document
05.    $PHPWord = new PHPWord();
06. 
07.    // New portrait section
08.    $section = $PHPWord->createSection();
09. 
10.    // Add text elements
11.    $section->addText('Hello World!');
12.    $section->addTextBreak(2);
13. 
14.    $section->addText('I am inline styled.', array('name'=>'Verdana', 'color'=>'006699'));
15.    $section->addTextBreak(2);
16. 
17.    $PHPWord->addFontStyle('rStyle', array('bold'=>true, 'italic'=>true, 'size'=>16));
18.    $PHPWord->addParagraphStyle('pStyle', array('align'=>'center', 'spaceAfter'=>100));
19.    $section->addText('I am styled by two style definitions.', 'rStyle', 'pStyle');
20.    $section->addText('I have only a paragraph style definition.', null, 'pStyle');
21. 
22. 
23. 
24.    // Save File
25.    $objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'Word2007');
26.    $objWriter->save('CreateWord1.docx');
27.?>


Screenshot

PHPWord

ตัวยอ่างแรกจะเป็นการเขียนข้อความลงในไฟล์ Word Document แบบง่าย ๆ




ตัวอย่างที่ 2 ทดสสอบการส่งออกจากฐานข้อมูล MySQL Database

ให้สร้างตารางดังนี้
01.CREATE TABLE `customer` (
02.  `CustomerID` varchar(4) NOT NULL,
03.  `Name` varchar(50) NOT NULL,
04.  `Email` varchar(50) NOT NULL,
05.  `CountryCode` varchar(2) NOT NULL,
06.  `Budget` double NOT NULL,
07.  `Used` double NOT NULL,
08.  PRIMARY KEY  (`CustomerID`)
09.) ENGINE=MyISAM;
10. 
11.--
12.-- Dumping data for table `customer`
13.--
14. 
15.INSERT INTO `customer` VALUES ('C001', 'Win Weerachai', 'win.weerachai@thaicreate.com', 'TH', 1000000, 600000);
16.INSERT INTO `customer` VALUES ('C002', 'John  Smith', 'john.smith@thaicreate.com', 'EN', 2000000, 800000);
17.INSERT INTO `customer` VALUES ('C003', 'Jame Born', 'jame.born@thaicreate.com', 'US', 3000000, 600000);
18.INSERT INTO `customer` VALUES ('C004', 'Chalee Angel', 'chalee.angel@thaicreate.com', 'US', 4000000, 100000);


นำไปสร้างบน phpMyAdmin


PHPWord

โครงสร้างตารางและข้อมูล

CreateWord2.php
01.<?php
02.    require_once 'PHPWord.php';
03. 
04.    // New Word Document
05.    $PHPWord = new PHPWord();
06. 
07.    // New portrait section
08.    $section = $PHPWord->createSection();
09. 
10.    $PHPWord->addFontStyle('rStyle', array('bold'=>true, 'italic'=>true, 'size'=>16));
11.    $PHPWord->addParagraphStyle('pStyle', array('align'=>'center', 'spaceAfter'=>100));
12.    $section->addText('Customer Report', 'rStyle', 'pStyle');
13. 
14.    // Define table style arrays
15.    $styleTable = array('borderSize'=>6, 'borderColor'=>'006699', 'cellMargin'=>80);
16.    $styleFirstRow = array('borderBottomSize'=>18, 'borderBottomColor'=>'0000FF', 'bgColor'=>'66BBFF');
17. 
18.    // Define cell style arrays
19.    $styleCell = array('valign'=>'center');
20.    $styleCellBTLR = array('valign'=>'center', 'textDirection'=>PHPWord_Style_Cell::TEXT_DIR_BTLR);
21. 
22.    // Define font style for first row
23.    $fontStyle = array('bold'=>true, 'align'=>'center');
24. 
25.    // Add table style
26.    $PHPWord->addTableStyle('myOwnTableStyle', $styleTable, $styleFirstRow);
27. 
28.    // Add table
29.    $table = $section->addTable('myOwnTableStyle');
30. 
31.    // Add row
32.    $table->addRow(200);
33. 
34.    // Add cells
35.    $table->addCell(1500, $styleCell)->addText('CustomerID', $fontStyle);
36.    $table->addCell(1500, $styleCell)->addText('Name', $fontStyle);
37.    $table->addCell(1500, $styleCell)->addText('Email', $fontStyle);
38.    $table->addCell(1500, $styleCell)->addText('CountryCode', $fontStyle);
39.    $table->addCell(1500, $styleCell)->addText('Budget', $fontStyle);
40.    $table->addCell(1500, $styleCell)->addText('Used', $fontStyle);
41. 
42.    // Write data from MySQL result
43.    $objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
44.    $objDB = mysql_select_db("mydatabase");
45.    $strSQL = "SELECT * FROM customer";
46.    $objQuery = mysql_query($strSQL);
47.    while($objResult = mysql_fetch_array($objQuery))
48.    {
49.            // Add more rows / cells
50.            $table->addRow();
51.            $table->addCell(1500)->addText($objResult["CustomerID"]);
52.            $table->addCell(1500)->addText($objResult["Name"]);
53.            $table->addCell(1500)->addText($objResult["Email"]);
54.            $table->addCell(1500)->addText($objResult["CountryCode"]);
55.            $table->addCell(1500)->addText($objResult["Budget"]);
56.            $table->addCell(1500)->addText($objResult["Used"]);
57.        }
58. 
59.    // Save File
60.    $objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'Word2007');
61.    $objWriter->save('CreateWord2.docx');
62.?>


Screehshot

PHPWord

จากรูปจะเป็นตัวอย่างการดังข้อมูลจาก MySQL มาแสดงบนไฟล์เอกสาร Word ให้อยู่ในรูปแบบตาราง



เพิ่มเติม
หรือจะดาวน์โหลดตัวอย่างของ Library

PHPWord

ซึ่งจะมี Examples อยู่หลายตัว เช่น การแทรกรูปภาพ Images การสร้าง Header และ Footer รวมทั้งการสร้าง Object หรืออื่น ๆ



Download Code !!

บทความอื่น ๆ ที่เกี่ยวข้อง
Go to : ภาษาไทยบน PHPWord บทความและวิธีการแก้ปัญหาภาษาไทย (Thai) บน Library ของ PHPWord
Go to : PHP Word (Word.Application) : การใช้งาน PHP กับ Word : การเรียกใช้งาน Microsoft Word
Go to : PHP Word header("Content-type: application/vnd.ms-word");
Go to : แก้ปัญหา PHPWord แสดงตัวอักษรภาษาไทยไม่ได้ ยังไงดีครับ ใครมีวิธีแก้ช่วยแนะนำหน่อยครับ คือลองใช้ iconv() แล้วแต่มันไม่ได้ครับ
Go to : PHPWord ภาษาไทย มีปัญหาเรื่องการแสดงภาษาไทย ใครเจออย่างผมบ้าง


   
Hate it
Don't like it
It's ok
Like it
Love it
Share
Bookmark.   

  By : TC Admin
  Article : บทความเป็นการเขียนโดยสมาชิก หากมีปัญหาเรื่องลิขสิทธิ์ กรุณาแจ้งให้ทาง webmaster ทราบด้วยครับ
  Score Rating :
  Create Date : 2012-05-12
  Download : No files
Sponsored Links
ThaiCreate.Com Forum
Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   





ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่