PHP-CSL V0.9

 +PHP
+ Arrays (4)
+ COM for Windows (2)
+ ADODB Connection
+ Word Document
+ Image (2)
+ LDAP (3)
+ MySQL (10)
+ Regular Expressions (2)
+ String Manipulation (11)
+ Time and Date (6)
 +Snippet Options
+   Printer Friendly
 +Library Options
+   View Other Library
 +General Options
+   Library Home
+   PHP-CSL Credits
+   PHP-CSL License
+   Resource Links
+   Log in
Syntax for: COM for Windows / Word Document

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:

<?php

// starting word
$word = new COM("word.application") or die("Unable to instanciate Word");
print 
"Loaded Word, version {$word->Version}n";

//bring it to front
$word->Visible 1;

//open an empty document
$word->Documents->Add();

//do some weird stuff
$word->Selection->TypeText("This is a test...");
$word->Documents[1]->SaveAs("Useless test.doc");

//closing word
$word->Quit();

//free the object
$word->Release();
$word null;
?>
 
Description for: COM&nbsp;for&nbsp;Windows / Word&nbsp;Document
  Create a word document with COM


 
Powered by: PHP-CSL V0.9