|
|
|
ออกรายงานเป็นภาษาไทยได้ไหม จากบทเรียน php+word ในเว็ปไซต์ครับ |
|
|
|
|
|
|
|
ทำออกเป็น word พอได้ ปัญหามันจะอยู่ตอนจัดหน้านั่นแหล่ะครับ
|
|
|
|
|
Date :
2011-06-05 18:54:16 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมทดลองโดยใช้vmware รัน windows server 2003 โดยกำหนดให้ vmware เป็น serverโดยใช้ windows 7 เป็นตัว client แล้วใช้โค้ด
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP Word.Application Tutorial</title>
</head>
<body>
<?
$Wrd = new COM("Word.Application");
$Wrd->Application->Visible = False;
$DocName = "MyWord12.doc";
$strPath = realpath(basename(getenv($_SERVER["SCRIPT_NAME"])));
$fullFileName = $strPath."\\".$DocName;
//$strPath = realpath(basename(getenv($_SERVER["SCRIPT_NAME"]))); // C:/AppServ/www/myphp
$WrdDoc = $Wrd->Documents->Add();
$WTable = $WrdDoc->Tables->Add($Wrd->Selection->Range, 3, 3); // Colums, Rows
$WTable->Cell(1,1)->Range->Font->Name = "Angsana New";
$WTable->Cell(1,1)->Range->Text = "ทดสอบภาษาไทย";
$WTable->Cell(1,2)->Range->Font->Size = 18;
$WTable->Cell(1,2)->Range->Bold = True;
$WTable->Cell(1,2)->Range->Font->Italic = True;
$WTable->Cell(1,2)->Range->Text = ทดสอบบภาษาไทย";
$WTable->Cell(2,1)->Range->ParagraphFormat->Alignment = 1; // 0= Left, 1=Center, 2=Right
$WTable->Cell(2,1)->Range->Font->Name = "Arial";
$WTable->Cell(2,1)->Range->Font->Size = 12;
$WTable->Cell(2,1)->Range->Bold = False;
$WTable->Cell(2,1)->Range->ParagraphFormat->Alignment = 2;
$WTable->Cell(3,3)->Range->Font->Name = "Times New Roman";
$WTable->Cell(3,3)->Range->Font->Size = 14;
$WTable->Cell(3,3)->Range->Bold = True;
$WTable->Cell(3,3)->Range->Font->Underline = True;
$WTable->Cell(3,3)->Range->ParagraphFormat->Alignment = 0;
$WTable->Cell(3,2)->Range->Text = "ThaiCreate.Com 3";
//$Wrd->ActiveDocument->SaveAs($strPath."/".$DocName);
$Wrd->ActiveDocument->SaveAs($fullFileName);
$Wrd->Application->Quit;
$Wrd = null;
?>
Word Created <a href="<?=$DocName?>">Click here</a> to Download.
</body>
</html>
ครับ ผลที่ได้คือ โหลด ไฟล์ myword12.doc มาได้ แต่ไม่ได้ภาษาไทยครับ กลายเป็นตัว ยึกยือๆ ครับ
|
|
|
|
|
Date :
2011-06-05 20:35:43 |
By :
sudlor_gang |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองใช้ iconv() ในการแปลงให้เป็น Thai ก่อนน่ะครับ
|
|
|
|
|
Date :
2011-06-05 21:06:55 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|