WeberDev.com PHP and MySQL Code

LOG IN
BEGINNER GUIDESPHP CLASSESCODE SEARCHARTICLES SEARCHPHP FORUMSPHP MANUALPHP FUNCTIONS LISTWEB SITE TEMPLATES
Start typing to search for PHP and MySQL Code Snippets and Articles Search
Submit a code Example / Snippet Join us on FaceBook
Submit a code Example / Snippet Submit Your Code
Poker Tournaments Poker Tournaments
Poker Guide for Developers Poker Guide for Developers
Search Engine Optimization Monitor SEO Monitor
Web Site UpTime Monitor UpTime Monitor
Your Personal Examples List My Favorite Examples
Your Personal Articles List My Favorite Articles
Edit Account Info Update Your Profile
PHP Code Search
Web Development Forums
Learn MySQL Playing Trivia
PHPBB2 Templates
Web Development Resources
Web Development Content
Internet Security Software
PHPClasses
PHP Editor
PHP Jobs
Vision.To Design
Ajax Tutorials
PHP Programming Help
PHP/MySQL Programming
Webmaster Resources
Webmaster Forum
XML meta language
website builder
פרייסז - הכח לקנות עובר לידיים שלך
Texas Holdem Poker Evangelists

Go Back Add a Comment Send this example to a friend Add this Article to your personal favoritest for easy future access to your favorite Code Examples and Articles. Submit a code example Print this code example.
BACK ADD A COMMENT SEND TO A FRIEND ADD TO MY FAVORITES ADD CODE EXAMPLES PRINT
Title : Class to convert any document, that can be read by MS Word, to another format supported by Word.
Categories : PHP Classes, PHP, Windows 2000, Microsoft Word, WinNT Click here to Update Your Picture
alain samoun
Date : Nov 17th 2001
Grade : 1 of 5 (graded 3 times)
Viewed : 14384
File : wordconvert.zip
Images : No Images for this code example.
Search : More code by alain samoun
Action : Grade This Code Example
Tools : My Examples List

Submit your own code examples  Submit your own code examples 
 

wordconvert.php
<?php
/* Class to convert any document, that can be read by MS Word, to another format supported by Word.
     * © Alain M. Samoun 10/2001.
     * alain@samoun.com
     * Gnu GPL code (see www.fsf.org for more information).
    * Tested on win98 + Apache1.3  PHP 4.8 dev as CGI  - Word 2000
    * This file should be saved in the PHP's include directory.
    *If you try to use COM in XP/win2k or NT, you need to set-up permissions to the application
     with the program >DCOMCNFG.EXE :
    Run DCOMCNFG.exe, select the application and add permissions in Security:
    - Custom Access Permissions: “Allow”
    Then Edit / Add
    - the “IUSR_<servername>” user access to the object.- The user account to run the application:
     “The interactive user”
    And close.
    * Usage:
    <?php
        require ("wordconvert.php");
        new wordconvert($filename,$convert_to,$visible);
    ?>
    * Conversion time example: Convert a 33 pages rtf document (133KB) to an htm file (268KB)
      in 6 sec. (300MHz processor). Not a speed daemon, but will work for small files on servers
      with low hits number (Intranet...).
*/
   
class wordconvert
   
{

           
/* variables */
   
var $filename;    # Original File name with optional path.
            # If no path provided, will be looked for in My Documents.
   
var $convert_to=0;      # Extension (as a string) or number (See Doc on SaveAs method below),
            # doc extension is the default.
   
var $visible=0;    # 0=Hidden, 1= Visible, hidden is the default.
   
          /* Constructor */

             
function wordconvert($filename,$convert_to=0,$visible=0)
               {
               
                   
$filename_pathsubstr($filename,0,-4);
           
            if (
is_string ($convert_to))
            {
               
$convert_to= strtolower($convert_to);
           
                 switch (
$convert_to)
                 {
                         case
"doc":
                             
$convert_to=0;
                             Break;
                         case
"dot":
                             
$convert_to=1;
                             Break;
                         case
"txt":
                             
$convert_to=2;
                             Break;
                         case
"rtf":
                             
$convert_to=6;
                             Break;
                         case
"htm":
                             
$convert_to=8;
                             Break;
                         case
"html":
                             
$convert_to=8;
                             Break;
                         case
"asc":
                             
$convert_to=9;
                             Break;
                         case
"wri":
                             
$convert_to=13;
                             Break;
                         case
"wps":
                             
$convert_to=28;
                             Break;
                         default:
                             
$convert_to=0;
                     }
                 }
           
# Instantiate MSWord
             
$word=new COM("Word.Application") or die("Cannot start MS Word");
     
             
$word->visible = $visible ;
     
           
#Open the original file in word.
           
$word->Documents->Open($filename)or die("Cannot find file to convert");

/*
Doc on SaveAs method:
expression.SaveAs(FileName, FileFormat, LockComments, Password, AddToRecentFiles, WritePassword, ReadOnlyRecommended, EmbedTrueTypeFonts, SaveNativePictureFormat, SaveFormsData, SaveAsAOCELetter)
Only the two first parameters are supported in this class.
File save format number to use ( WdSaveFormat prop. ):
  wdFormatDocument = 0;  wdFormatTemplate = 1;  wdFormatText = 2;  wdFormatTextLineBreaks = 3;
  wdFormatDOSText = 4;  wdFormatDOSTextLineBreaks = 5;  wdFormatRTF = 6;  wdFormatUnicodeText = 7;
  Extensions=number: doc=0,dot =1,txt=2,htm=8,asc=9,wri=13,doc(word perfect DOS)=24,wps(works)=28
*/


            #Save the new file
           
$word->ActiveDocument->SaveAs($filename_path,$convert_to);

/*
Doc on quit method:
expression.Quit(SaveChanges, Format, RouteDocument)
*/

           
$word->quit(0); #0: Quit without saving
            # print "done!";
   
       
}#End of func
   
   
}#End of class
?>


Usage
<?php
/*
* Example using the wordconvert Class to convert an RTF document to the html format.
* (c) Alain M. Samoun 10/2001.
* alain@samoun.com
* Gnu GPL code (see www.fsf.org for more information).
* Tested on win98 + Apache PHP 4.8 dev, PHP4.6 - Word 2000
*If you try to use COM in win2k/XP or NT, you >need to set-up permissions to the application
with the program >DCOMCNFG.EXE :
    Run DCOMCNFG.exe, select the application and add permissions in Security:
    - Custom Access Permissions: “Allow”
    Then Edit / Add
    - the “IUSR_<servername>” user access to the object.- The user account to run the application:
     “The interactive user”
    And close.
* To run this example: Put the wordconvert.php file in your include directory,
    Edit the filename  and the extension that you wish below.
then call this file from your server or run it from the command line.
   



*/

       
require ("wordconvert.php"); # The class file wordconvert.php should be saved on the PHP include directory
   
    # Change as you wish with your own values:
       
$filename="c:/windows/desktop/my briefcase/manual.doc";
       
$ext = "htm"; # - will convert rtf file above to htm file
       
$ext = 8;       # Same as above. See class info for Extension <-> Number correspondence.
       
$vis= 1; # =1Word will be visible, =0 to hide it
   
    # Run the script with the above values   
   
new wordconvert($filename,$ext,$vis); #Do the trick
   

   
print "done!";
?>



ADODB Database Wrapper Abstraction Library for PHP: MySQL, MSSQL, Oracle, Interbase,ODBC, Microsoft Access and FoxPro.
Categories : PHP Classes, Databases, PHP, General SQL, ODBC
Sample usage of IPv6 and IPv4 with PHP
Categories : PHP, PHP Classes, Network
SPL and ITERATOR : examples
Categories : PHP, Object Oriented, PHP Classes, Sessions
Automatic generation of HTML code for a table. OO interface. Can define colspan, rowspan, table style, cell style, and data style. Simple, but effective.
Categories : PHP, PHP Classes, HTML, HTML and PHP
A class for sending email; it has support for To:, Cc:, Bcc: and Reply-To: headers. It requires that you have sendmail installed.
Categories : Email, PHP Classes, PHP
PHP MIME Decoder. This class decodes Mime Encoded email message. Attachments are stored in a director. Works with Multipart/alternative, multipart/mixed etc. see http://p3mail.com for example.
Categories : PHP, PHP Classes, Email
Linkers Class
Categories : PHP Classes, PHP
XML To Array
Categories : PHP, PHP Classes, XML, Arrays
imageMarker v 3.00 with new advanced features
Categories : PHP, PHP Classes, Graphics, GD image library
AutoRSS
Categories : PHP, Rich Site Summary (RSS), PHP Classes
credit card security code
Categories : PHP, Credit Cards, PHP Classes, Credit Cards
Greatest Common Denominator - A simple class that finds the greatest common denominator for two integers.
Categories : PHP, PHP Classes, Math.
TableMaint: class to help in the updating of data stored in database tables
Categories : PHP, PHP Classes, Databases
Compare two texts and display a block of text with the differences between them.
Categories : PHP, PHP Classes, Filesystem, Strings, Arrays
PHP5 SQLite Abstraction class
Categories : PHP, PHP Classes, SQLite, Databases