PHP  
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  
<ccvs_voidCOM>
view the version of this page
Last updated: Sun, 02 May 2004

VIII. Funzioni di supporto COM per Windows

Introduzione

COM è una tecnologia che permette il riutilizzo del codice scritto in un qualsiasi linguaggio utilizzando una convenzione standard di chiamate e nascondendo dietro a delle API i dettagli di implementazione quali la macchina su cui il Componente è conservato e il file eseguibile che lo ospita. Si può pernsare a COM com a un meccanismo avanzato di Remote Procedure Call (RPC) con alcune basi di programmazione ad oggetti. COM separa l'implementazione dall'interfaccia.

COM incoraggia il versioning, la separazione tra interfaccia e implementazione e l'occultamento dei dettagli dell'implementazione, come la posizione dell'eseguibile e il linguaggio di programmazione.

Requisiti

Le funzioni COM sono disponibili solo sulle versioni Windows di PHP.

Installazione

Non è necessaria nessuna installazione per usare queste funzioni, esse fanno parte del core di PHP.

La versione per Windows di PHP ha già compilato il supporto per questo modulo. Non occorre caricare alcun modulo addizionale per potere utilizzare queste funzioni.

Configurazione di Runtime

Il comportamento di queste funzioni è influenzato dalle impostazioni di php.ini.

Tabella 1. opzioni di configurazione Com

NomeDefaultModificabile in
com.allow_dcom"0"PHP_INI_SYSTEM
com.autoregister_typelib"0"PHP_INI_SYSTEM
com.autoregister_verbose"0"PHP_INI_SYSTEM
com.autoregister_casesensitive"1"PHP_INI_SYSTEM
com.typelib_file""PHP_INI_SYSTEM
Per ulteriori dettagli e definizioni delle costanti PHP_INI_* vedere ini_set().

Costanti predefinite

Queste costanti sono definite da questa estensione e sono disponibili solo se l'estensione è stata compilata nel PHP o se è stata caricata dinamicamente a runtime.

CLSCTX_INPROC_SERVER (integer)

CLSCTX_INPROC_HANDLER (integer)

CLSCTX_LOCAL_SERVER (integer)

CLSCTX_REMOTE_SERVER (integer)

CLSCTX_SERVER (integer)

CLSCTX_ALL (integer)

VT_NULL (integer)

VT_EMPTY (integer)

VT_UI1 (integer)

VT_I2 (integer)

VT_I4 (integer)

VT_R4 (integer)

VT_R8 (integer)

VT_BOOL (integer)

VT_ERROR (integer)

VT_CY (integer)

VT_DATE (integer)

VT_BSTR (integer)

VT_DECIMAL (integer)

VT_UNKNOWN (integer)

VT_DISPATCH (integer)

VT_VARIANT (integer)

VT_I1 (integer)

VT_UI2 (integer)

VT_UI4 (integer)

VT_INT (integer)

VT_UINT (integer)

VT_ARRAY (integer)

VT_BYREF (integer)

CP_ACP (integer)

CP_MACCP (integer)

CP_OEMCP (integer)

CP_UTF7 (integer)

CP_UTF8 (integer)

CP_SYMBOL (integer)

CP_THREAD_ACP (integer)

Vedere anche

Per maggiori informazioni su COM si leggano le specifiche COM o si guardi anche la documentazione di Don Box su Yet Another COM Library (YACL)

Sommario
COM -- classe COM
VARIANT -- classe VARIANT
com_addref --  Incrementa il contatore di referenze.
com_get --  Ricava il valore di una proprietà di un componente COM
com_invoke --  Chiama un metodo di un componente COM.
com_isenum -- Recupera un IEnumVariant
com_load_typelib -- Carica una Typelib
com_load --  Crea un nuovo riferimento a un componente COM
com_propget -- Alias di com_get()
com_propput -- Alias di com_set()
com_propset -- Alias di com_set()
com_release --  Decrementa il contaotre di referenze.
com_set --  Assegna un valore a una proprietà di un oggetto COM


add a note add a note User Contributed Notes
Funzioni di supporto COM per Windows
angelo [at] mandato <dot> com
18-May-2004 10:30
Useful PHP functions I created (similar to other standard PHP database functions) for working with an ADO datasource:
<?php
  
// ado.inc.php
  
  
$ADO_NUM = 1;
  
$ADO_ASSOC = 2;
  
$ADO_BOTH = 3;
  
   function
ado_connect( $dsn )
   {
      
$link = new COM("ADODB.Connection");
      
$link->Open($dsn);
       return
$link;
   }
  
   function
ado_close( $link )
   {
      
$link->Close();
   }
  
   function
ado_num_fields( $rs )
   {
       return
$rs->Fields->Count;
   }
  
   function
ado_error($link)
   {
       return
$link->Errors[$link->Errors->Count-1]->Number;
   }
  
   function
ado_errormsg($link)
   {
       return
$link->Errors[$link->Errors->Count-1]->Description;
   }
  
   function
ado_fetch_array( $rs, $result_type$row_number = -1 )
   {
       global
$ADO_NUM, $ADO_ASSOC, $ADO_BOTH;
       if(
$row_number > -1 ) // Defined in adoint.h - adBookmarkFirst    = 1
          
$rs->Move( $row_number, 1 );
      
       if(
$rs->EOF )
           return
false;
      
      
$ToReturn = array();
       for(
$x = 0; $x < ado_num_fields($rs); $x++ )
       {
           if(
$result_type == $ADO_NUM || $result_type == $ADO_BOTH )
              
$ToReturn[ $x ] = $rs->Fields[$x]->Value;
           if(
$result_type == $ADO_ASSOC || $result_type == $ADO_BOTH )
              
$ToReturn[ $rs->Fields[$x]->Name ] = $rs->Fields[$x]->Value;
       }
      
$rs->MoveNext();
       return
$ToReturn;
   }
  
   function
ado_num_rows( $rs )
   {
       return
$rs->RecordCount;
   }
  
   function
ado_free_result( $rs )
   {
      
$rs->Close();
   }
  
   function
ado_query( $link, $query )
   {
       return
$link->Execute($query);
   }
  
   function
ado_fetch_assoc( $rs$row_number = -1 )
   {
       global
$ADO_ASSOC;
       return 
ado_fetch_array( $rs, $ADO_ASSOC, $row_number);
   }
  
   function
ado_fetch_row( $rs$row_number = -1 )
   {
       global
$ADO_NUM;
       return
ado_fetch_array( $rs, $ADO_NUM, $row_number);
   }
  
  
// Extra functions:
  
function ado_field_len( $rs, $field_number )
   {
       return
$rs->Fields[$field_number]->Precision;
   }
  
   function
ado_field_name( $rs, $field_number )
   {
       return
$rs->Fields[$field_number]->Name;
   }
  
   function
ado_field_scale( $rs, $field_number )
   {
       return
$rs->Fields[$field_number]->NumericScale;
   }
  
   function
ado_field_type( $rs, $field_number )
   {
       return
$rs->Fields[$field_number]->Type;
   }
  
?>

The aod version was a typo.
markshane1 at fuse dot net
10-May-2004 10:41
Here is a COM function that creates an excel spreadsheet with any number of worksheets, containing data from a matching number of SQL queries.  Be ware of the upper limit of excel worksheets.  This function properly shuts down Excel on the server. 
/***************************/
   function WriteExcel($strPath,$astrSheetName,$astrSQL){
/* This function takes a file save path, and array of sheet names and a corresponding array */
/* of SQL queries for each sheet and created a multi-worksheet excel spreadsheet*/
   $C_NAME=__CLASS__."::".__FUNCTION__;
       $dbs=new clsDB;
       $exapp = new COM("Excel.Application") or Die ("Did not connect");
       $intSheetCount=count($astrSheetName);
       $wkb=$exapp->Workbooks->Add();   
           $exapp->Application->Visible = 1;
       for ($int=0;$int<$intSheetCount;$int++){
           $sheet=$wkb->Worksheets($int+1);
           $sheet->activate;
           $sheet->Name=$astrSheetName[$int];
           $intRow=1;
           $qrySQL=$dbs->GetQry($astrSQL[$int],$C_NAME,__LINE__);
           $rstSQL=$qrySQL->fetchRow(DB_FETCHMODE_ASSOC);
           $astrKeyNames=array_keys($rstSQL);
           $intCols=count($astrKeyNames);
           $qrySQL=$dbs->GetQry($astrSQL[$int],$C_NAME,__LINE__);
           while($rstSQL=$qrySQL->fetchRow(DB_FETCHMODE_ASSOC)){
               $strOut="";//initialize the output string
               for ($int2=0;$int2<$intCols;$int2++){//we start at 1 because don't want to output the table's index
                   if($intRow==1){
                       $strOut=$astrKeyNames[$int2];
                   }else{
                       $strOut=$rstSQL[$astrKeyNames[$int2]];
                   }
                       $sheet->activate;
                       $cell=$sheet->Cells($intRow,($int2+1));//->activate;
                       $cell->Activate;
                         $cell->value = $strOut;
                   }//end of colcount for loop
               $intRow++;
           }//end while loop
       }//end sheetcount for loop
       if (file_exists($strPath)) {unlink($strPath);}
       $wkb->SaveAs($strPath);
       $wkb->Close(false);
       unset($sheet);
       $exapp->Workbooks->Close(false);
       unset($wkb);
       $exapp->Quit;
       unset($exapp);
       unset($dbs);
   }//function WriteExcel
Haseldow
05-Apr-2004 11:31
Simple example for creating your own dll's which can be called as COM objects in PHP:

First create your ActiveX dll (Visual Basic):
Name your project as "foo" and class as "bar".

'---start VB code---
Public Function hello() As String
   hello = "Hello World!"
End Function
'---end VB code---

Then make the dll and register it with regsvr32.exe

Now create your PHP script:

<?php
$obj
= new COM("foo.bar");
$output=$obj->hello(); // Call the "hello()" method
echo $output; // Displays Hello World! (so this comes from the dll!)
?>
mark dickens at mindspring dot com
29-Feb-2004 02:03
Just a note to those wanting to use COM to interface to printers under Windows 2000/XP.  If it doesn't work or seems to hang, try changing the logon identity under which the Apache (assuming you're using Apache) service is running from the System account to another account.  By default most services will install to run under the System account and although the System account has total authority on the computer it is running on, it has no authority outside of that realm as I understand it.  Apparently accessing printers is considered "outside the realm".  I used this technique to interface a Dymo thermal label printer to my server and it works now.
Awadhaj at hotmail dot com
28-Feb-2004 11:44
Hi php Society!
Using COM function u can run your own simple dlls !
#if u are an ADMINISTRATOR#

first: use the windows regsver32.exe to register ur dll.
second:

<php?
   $myDLL=new COM("myDll");
   // then u can invoke eny method
   $myDLL->DoSomething;
   //  or get any proerty
   $xVar=$myDLL->GetSomeValue
?>
platiumstar at canada dot com
12-Feb-2004 09:08
I didn't found any working examples of PHP using the MSMQ COM object, so I made up one, thought I share it with everybody..it works ok.
You have to create a local Public message queue named "TestQueue" first.

define(MQ_SEND_ACCESS , 2);
define(MQ_DENY_NONE , 0);

$msgQueueInfo =  new COM("MSMQ.MSMQQueueInfo") or die("can not create MSMQ Info object");
$msgQueueInfo->PathName = ".\TestQueue";
      
$msgQueue =  new COM("MSMQ.MSMQQueue") or die("can not create MSMQ object");
$msgQueue=$msgQueueInfo->Open(MQ_SEND_ACCESS, MQ_DENY_NONE );
      
$msgOut = new COM("MSMQ.MSMQMessage") or die("can not create MSMQ message object");               
$msgOut->Body = "Hello world!";
$msgOut->Send($msgQueue);
      
$msgQueue->Close();       
unset($msgOut);
unset($msgQueue);
unset($msgQueueInfo);

enjoy
PS
kleontiv -at- combellga -dot- ru
15-Dec-2003 05:47
And here is an example of using ADSI via ADODB. This sample is unique because only ADODB can provide recursive Active directory searching and listing. But ADODB can only READ Active directory. So you can find something by ADODB and then modify that directly by ADSI.

With previos example this help build you PHP coded interface to Menaging and browsing Microsoft Active Directory.

Also ADODB on ADSI helps you sort recordset and search on it.

<?php

$objConnection
= new COM ("ADODB.Connection") ;
$objConnection->Open("Provider=ADsDSOObject;user id=DOMAIN\\login;password=your_passowrd;") ;

$objCommand = new COM("ADODB.Command") ;
$objCommand->ActiveConnection = $objConnection ;

$Cmd  = "<LDAP://dc=mydomain,dc=com>;" ;
$Cmd .= "(&(objectClass=user)(mail=*)(!cn=SystemMailbox*));" ;
$Cmd .= "name,mail,telephoneNumber;subtree" ;

$objCommand->Properties['Sort On']->Value = "name" ;

$objCommand->CommandText = $Cmd ;
$objRecordSet = $objCommand->Execute() ;

$OrderNumber = 0 ;
while(!
$objRecordSet->EOF())
 {
 
$OrderNumber ++ ;
 
$nn = $objRecordSet->Fields['name']->Value ;
 
$mm = $objRecordSet->Fields['mail']->Value ;
 
$ph = $objRecordSet->Fields['telephoneNumber']->Value ;
  echo
"$OrderNumber: $nn mail: $mm phone: $ph<br>" ;
 
$objRecordSet->MoveNext() ;
 }

Echo
"===========================<br>" ;
Echo
"All MailBoxes: " ;
Echo
$objRecordSet->RecordCount() ;
$objRecordSet->Close() ;
$objCommand->Close() ;
$objConnection->Close() ;

unset(
$objRecordSet) ;
unset(
$objCommand) ;
unset(
$objConnection) ;

?>
kleontiv -at- combellga -dot- ru
15-Dec-2003 03:27
I think some one wants to access to Microsoft Active Directory using ADSI with different credential by PHP. You can also do it via pure LDAP but using ADSI it is more simpler.

On VB, VBS or ASP you can do like folowing (so not trivial):

<%
Set dso = GetObject("LDAP:")

Set DsObj = dso.OpenDSObject( _
   "LDAP://DC=mydomain,DC=com", _
   "DOMAIN\login", _
   "password", _
   ADS_SECURE_AUTHENTICATION + ADS_SERVER_BIND + ADS_USE_ENCRYPTION)

for each Obj in DsObj
   Response.Write Obj.name & " with class of: " & Obj.class & "<br>"
next
%>

On PHP you can do like that:

<?php
$ADSI
= new COM("LDAP:") ;

$DsObj = $ADSI->OpenDsObject("LDAP://DC=mydomain,DC=com",
                            
"DOMAIN\login",
                            
"password",
                            
515) ;

while(
$Obj = $DsObj->Next())
 {
  echo
$Obj->name.' with class of: '.$Obj->class.'<br>' ;
 }
?>

The access type enumeration you can use as ADS_AUTHENTICATION_ENUM.
david at wu-man dot com
06-Dec-2003 08:42
After many hours of trial and error, I have finally discovered how to kill the notorious Word process.  I hope my solution works for everyone else.

#1) $word->Quit() is perfectly fine.  Don't bother feeding in as parameter those empty variants.

#2) Do NOT have com_load_typelib('Word.Application') anywhere in your script.

#3) Make sure you have the following line before $word->Quit() :

$word->Documents[1]->Close(false);

#4) Add the following lines after $word->Quit() :

$word->Release();
$word = null;
unset($word);

If my solution indeed helped you with your problem, please email me and let me know.  I would like to see if the problem was indeed solved.
aldric dot vaseur at sirom dot fr
04-Dec-2003 02:07
Yes !
Finally i found how to kill MsWord Com process...

The next MSWord function does not work if the optional args are empty :

this doesn't work:
   $word->Quit();

but this is ok :
   $empty = new VARIANT(); //for optional args...
   $word->Quit($empty,$empty,$empty);

Hope this usefull.

Aldric
alanraycom at el hogar dot net com
03-Dec-2003 09:50
XSLT transformations using MSXML can be done with this code

function xsltransform1($xslpath,$xmlstring)
 {
  $xml= new COM("Microsoft.XMLDOM");
  $xml->async=false;
  // $xmlstring is an xml string
  $xml->load($xmlstring);
  $xsl = new COM("Microsoft.XMLDOM");
  $xsl->async=false;
  // $xslpath is path to an xsl file
  $xsl->load($xslpath);
  $response=$xml->transformNode($xsl);
  unset($xml);
  unset($xsl);
  return $response;
 }

// enjoy
//Alan Young
chris at hitcatcher dot com
01-Dec-2003 10:19
Many COM objects don't do well when passing long (win32) filenames as function parameters.  You can get the 8.3 name of the folder or file on *most* (some win platforms don't support it, and it can be toggled off in the registry for performance reasons) servers using the following:

<?php
//create FSO instance
$exFSO = new COM("Scripting.FileSystemObject") or die ("Could not create Scripting.FileSystemObject");

//set vars
$myDir = "C:\\Program Files\\";
$myFile = "a long file name.txt";

//get folder & file objects
$exDir = $exFSO->GetFolder($myDir);
$exFile = $exFSO->GetFile($myDir . $myFile);
echo
$exDir->ShortPath;
echo
$exFile->ShortPath;
?>
23-Nov-2003 03:57
Here is an example of reading the custom properties like Author, Keywords, etc. which are stored in MS Office and other Windows files. You must install and register dsofile as described at http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q224351. The .frm file in that distribution lists most of the available properties.

// the file you wish to access
$fn = '/docs/MFA.xls';

$oFilePropReader = new COM('DSOleFile.PropertyReader');
$props = $oFilePropReader->GetDocumentProperties($fn);

// one syntax
$au = com_get($props, 'Author');
print "au: $au \n";

//another syntax
$str = 'LastEditedBy';
$lsb = $props->$str;
var_dump($lsb);

// set a property if you wish
if (!$props->IsReadOnly()) {
  $props->Subject = 'tlc';
}
brana
17-Nov-2003 11:17
How to send email via MAPI (works with Windows NT4, apache launched as a service)

#New MAPI session...
$session = new COM("MAPI.Session");

#Login
$strProfileInfo = "exchange_server" . chr(10) . "exchange_user";
$session->Logon("", "", 0, 1, 0, 1, $strProfileInfo);
          
# New message...
$msg = $session->Outbox->Messages->Add();
$msg->Subject = "Subject";
$msg->Text = "body";
      
#set recipients...
$rcpts = $msg->Recipients;
$rcpts->AddMultiple("toto@toto.com", 1);  #To...
$rcpts->AddMultiple("titi@titi.com", 2);  #Cc...
$rcpts->AddMultiple("tutu@tutu.com", 3);  #Bcc...

# Resolve senders
$rcpts->Resolve();
              
#Send message
$msg->Send();   

#Logoff           
$session->Logoff();   
      
#Cleanup
if($msg!=null) {
   $msg->Release();
   $msg = null;
}       
if($session!=null) {
   $session->Release();
   $session = null;
}               

ps : NT account launching the service and exchange user must match !
max at netznacht dot de
11-Nov-2003 01:45
Apache 1.3
PHP 4.x

I found the Example from Admin Purplerain usefull but, it wasn't working without this first Line:

com_load_typelib('Outlook.Application');

// after that the code from Purplerain
$objApp = new COM("Outlook.Application");
$myItem = $objApp->CreateItem(olMailItem);
$a=$myItem->Recipients->Add("your adress here");
$myItem->Subject="Subject";
$myItem->Body="This is a Body Section now.....!";
$myItem->Display();
$myItem->Send();

Still have to switch of the Outlook Security Warnings.
10-Nov-2003 11:25
RE: PROBLEM QUITTING MICROSOFT EXCEL

I strongly suspect this is due to excel helpfully asking "Do you want to save the changes you made to  'Book1'?" when Quit is called.

This can be avoided by making sure that you set the 'Saved' property to True on ALL workbooks before exiting.

Assuming you only have the one workbook:
$excel->ActiveWorkbook->Saved = 1

Word suffers a similar problem and you must set the saved property to true on each document.

This demonstrates the pitfalls of scripting Word, Excel and similar applications in a non-interactive environment.
dirk_hahn at westlb-systems dot de
06-Nov-2003 02:07
Hi,
I´ve GOOGLED alot to find out how to use the MS Index Server (which comes with IIS-Webserver) as a search engine. Here is the code that makes a connection via ADO and lists a result for a given searchstring. Hope you'll find it usefull, it will surely prevent you from searching a long time in search engines. If anybody knows how to do it better, feel free to post it here. The following url contains a description for the index server. It also mentions some further features of the index server (http://www.jiafangyifang.com/memo.php?ID=3232  japanese only, sorry).

$searchstring="news";
         $INDEXCATALOG="YourCatalogName";
         $objIndexServer = new COM("ADODB.Connection") or die("Cannot start ADO");
       $objIndexServer->Provider = "msidxs";
       $objIndexServer->Open($INDEXCATALOG);
      
       $sql="SELECT DocTitle, VPath, Path, Filename, Access, HitCount, Rank "
           ."FROM SCOPE('DEEP TRAVERSAL OF \"d:\inetpub\intranet \"') "
           ."WHERE ((CONTAINS(' \"$searchstring\" ') >0) "
           ."AND ((Path NOT LIKE '%\_vti%') AND (Path NOT LIKE '%\_private%') "
           ."AND (Filename NOT LIKE 'search.php'))) ORDER BY Rank DESC";
      
       $objRS = $objIndexServer->Execute("$sql"); # submit the query
      
       while (!$rs->EOF) //create output
       {
           echo
           $objRS->Fields["DOCTITLE"]->value." -- "
           .$objRS->Fields["FILENAME"]->value." -- "
           .date("d.M.y",$objRS->Fields["ACCESS"]->value)." -- "
           .$objRS->Fields["HITCOUNT"]->value." -- "
           .($objRS->Fields["RANK"]->value/10)."% ----> "
           .$objRS->Fields["VPATH"]->value
           ."<br>";
           $objRS->MoveNext();
       }
feelingflash at hotmail dot com
03-Nov-2003 06:13
PROBLEM QUITTING MICROSOFT EXCEL

I have been trying to solve the problem of terminating the excel process when using the COM functionality. I found a few 'supposed fixes' including not using arrays etc but none of them seemed to work. Example:

$excel->application->Quit();
$excel->Quit();

None of these variants properly quit the process - ONLY the visible application. Several hours of using your code would leave thousands of excel processes running invisibly in the background and eating all your ram very quickly.

As I was developing on a solution designed to work on clients running windows, my solution was to install microsofts 'kill.exe' into the windows directory and then run it using:

shell_exec("kill excel.exe");

One problem is because kill.exe is an add on utility, some clients running windows will not have it. The solution is then to use file_exists(filename) to detect for the file and then if not present, let the user download it. Example:

$killApp = "C:\WINDOWS\KILL.EXE";

if (file_exists($killApp)) {
   # continue       
} else {
   # show message and link to kill.exe download
}
superzouz is at hotmail
10-Oct-2003 11:46
-- Catching COM events --
Hello everyone.
Anyone who did VB + COM would know something is missing here: events!
Here's how to catch IE events using some undocumented functions:
----------
class ieSinker {
   var $terminated = false;
   function TitleChange($text) {
         echo("title has changed: $test \n");
         }
   function OnQuit() {
           echo "Quit!\n";
           $this->terminated = true;
           }
   }

$ie = new COM("InternetExplorer.Application");
$ieSink =& new ieSinker();
com_event_sink($ie, $ieSink, "DWebBrowserEvents2");
$ie->navigate(' PATH TO YOUR HTML FILE GOES HERE! ');
$ie->visible = True;
while(!$ieSink->terminated) {
   com_message_pump(10);
   }
----------
Works perfect for me with php 4.3
You can find more info on the undocumented functions in the YACL documentation.
Note the "DWebBrowserEvents2" interface. You can find more information about these in the microsoft platform SDK documentation, under "web development". Or maybe they have a smaller web development SDK? I wasn't able to use any other interface, so what I do is send messages from IE to the PHP script by changing the title of the html document with JavaScript.
By the way, I cant take credit for the above code, I stole it from some website of which I lost the address.
Thats it... bye...
03-Oct-2003 06:55
Convert Microsoft word document .DOC to adobe acrobat .PS or .PDF files:

Drawback: if any dialog boxes pop up, the conversion will become non-automated.

<?
// You must have word and adobe acrobat distiller on
// your system, although theoretically any printer driver
// that makes .PS files would work.

// 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;

// Select the acrobat distiller as the active printer.
// I presume that you could also use the Acrobat PDF writer // driver that comes with Acrobat full version.
$word->ActivePrinter = "Acrobat Distiller";

// Open a word document, or anything else that word
// can read
$word->Documents->Open($input);

// This will create a .PS file called $output
$word->ActiveDocument->PrintOut(0, 0, 0, $output);

// If you need a .pdf instead, use the acrobat
// distiller's watched folder option.

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

// free the object
$word->Release();
$word = null;

?>
court shrock
26-Sep-2003 11:24
took me a while until I found out how to loop through COM objects in PHP.... in ASP, you use something like:

<%
set domainObject = GetObject("WinNT://Domain")

for each obj in domainObject
  Response.write obj.Name & "<br>"
next

%>

I finally found a note in a PHP bogus bug report that said you needed to do something like this (this is using ADSI):

<?php
$adsi
= new COM("WinNT://Domain");

while(
$obj = $adsi->Next()) {
  echo
$obj->Name.'<br>';
}
// while

// will list all the names of all objects in the domain 'Domain'
?>

Also, you can access the IIS metabase by doing something like the following:

<?php
$iis
= new COM("IIS://localhost/w3svc");

while(
$obj = $iis->Next()) {
  if (
$obj->Class == 'IISWebServer') {
  
$site = new COM("IIS://Localhost/w3svc/".$obj->Name);
   echo
'serviceID ('.$obj->Name.'): '.$site->ServerComment.'<br>';
  
$bindings = $site->ServerBindings;
  
   echo
'<ul>';
   foreach(
$bindings as $binding) {
     list(
$ip, $port, $hostHeader) = explode(':', $binding);
     echo
"<li>$ip:$port -- $hostHeader</li>";
   }
// foreach
  
echo '</ul>';

  
// hint: ssl bindings are in $site->SecureBindings

  
unset($site);

  }
// if
 
}// while
unset($iis);

// will list all the sites and their bindings on 'localhost'
?>
mkcostello at hotmail dot com
22-Sep-2003 03:35
Took me a while to work this out as there is very little help available. Accessing com variables that are multi arrays can prove tricky.

e.g.
$ex = new COM("application");

$ex->Stock->stSalesBands
is an array A-H [stPrice,stCurrency]

php chucks out an error on this:
$ex->Stock->stSalesBands(C)->stPrice;

so, you have to do this
$tmp = $ex->Stock->stSalesBands(C);
echo $tmp->stPrice;
unset($tmp)
php at dictim dot com
06-Sep-2003 07:17
This took me days to work out how to do so I gotta share it:

How to get the word count from a MS Word Document:

#Instantiate the Word component.

$word = new COM("word.application") or die("Unable to instantiate Word");

$word->Visible = 1;

$word->Documents->Open("c:/anydocument.doc");
$temp = $word->Dialogs->Item(228);
$temp->Execute();
$numwords = $temp->Words();

echo $numwords;

$word->Quit();

Note that this is the only way to get the word count accurately:
$word->ActiveDocument->Words->Count;
Will see all carriage returns and punctuation as words so is wildy innaccurate.
seidenberg at cf-mail dot net
11-Jul-2003 09:36
open PDF Documents with Internet Explorer

$browser = new COM("InternetExplorer.Application");
$browser->Visible = true;
$browser->Navigate("path_to_your_pdf_document");

this works for me with php-gtk
tomas dot pacl at atlas dot cz
16-Jun-2003 12:07
Passing parameters by reference in PHP 4.3.2 (and in a future releases of PHP )

In PHP 4.3.2 allow_call_time_pass_reference option is set to "Off" by default and future versions may not support this option any longer.
Some COM functions has by-reference parameters. VARIANT object must be used to call this functions, but it would be passed without an '&' before variable name.

Example:

$myStringVariant = new VARIANT("over-write me", VT_BSTR);

/* works */
$result = $comobj->DoSomethingTo($myStringVariant );

/* works only with allow_call_time_pass_reference option set to "On" and may not work in a future release of PHP */
$result = $comobj->DoSomethingTo(&$myStringVariant );

The value in the variant can be retrieved by:
$theActualValue = $myStringVariant->value;
php at racinghippo dot co dot uk
22-Mar-2003 11:47
PASSING/RETURNING PARAMETERS BY REFERENCE
=========================================

Some COM functions not only return values through the return value, but also act upon a variable passed to it as a parameter *By Reference*:

RetVal = DoSomethingTo (myVariable)

Simply sticking an '&' in front of myVariable doesn't work - you need to pass it a variant of the correct type, as follows:

  $myStringVariant = new VARIANT("over-write me", VT_BSTR);
  $result = $comobj->DoSomethingTo( &$myStringVariant );

The value in the variant can then be retrieved by:

  $theActualValue = $myStringVariant->value;

Other types of variant can be created as your needs demand - see the preceding section on the VARIANT type.
alex at domini dot net
05-Mar-2003 08:55
To manage the Windows Register at HKEY_LOCAL_MACHINE\SOFTWARE\ use these functions:

<?php

/**
 * @return string
 * @param aplicacio string
 * @param nom string
 * @desc Retorna el valor del registre HKEY_LOCAL_MACHINE\SOFTWARE\aplicacio\nom
 */
function rtv_registre($aplicacio, $nom)
{
   Global
$WshShell;
  
$registre "HKEY_LOCAL_MACHINE\SOFTWARE\\" . $aplicacio . "\\"  . $nom;
  
$valor = $WshShell->RegRead($registre);
   return(
$valor);
  
  
}

/**
 * @return string
 * @param aplicacio string
 * @param nom string
 * @param valor string
 * @param tipus string
 * @desc Actualitza el valor del registre HKEY_LOCAL_MACHINE\SOFTWARE\aplicacio\nom
 */
function put_registre($aplicacio, $nom, $valor, $tipus="REG_SZ")
{
   Global
$WshShell;
  
$registre "HKEY_LOCAL_MACHINE\SOFTWARE\\" . $aplicacio . "\\"  . $nom;
  
$retorn = $WshShell->RegWrite($registre, $valor, $tipus);
   return(
$retorn);
  
  
}

//
// Creem una instància del COM que ens serveix per
// accedir al registre de Windows, i la mantenim.
// D'aquesta manera millorem el rendiment.
$WshShell = new COM("WScript.Shell");
?>
richard dot quadling at carval dot co dot uk
26-Feb-2003 11:51
With thanks to Harald Radi and Wez Furlong.

Some VBA functions have optional parameters. Sometimes the parameters you want to pass are not consecutive.

e.g.

GoTo What:=wdGoToBookmark, Name="BookMarkName"
GoTo(wdGoToBookmark,,,"BookMarkName)

In PHP, the "blank" parameters need to be empty.

Which is ...

<?php
// Some servers may have an auto timeout, so take as long as you want.
set_time_limit(0);

// Show all errors, warnings and notices whilst developing.
error_reporting(E_ALL);

// Used as a placeholder in certain COM functions where no parameter is required.
$empty = new VARIANT();

// Load the appropriate type library.
com_load_typelib('Word.Application');

// Create an object to use.
$word = new COM('word.application') or die('Unable to load Word');
print
"Loaded Word, version {$word->Version}\n";

// Open a new document with bookmarks of YourName and YourAge.
$word->Documents->Open('C:/Unfilled.DOC');

// Fill in the information from the form.
$word->Selection->GoTo(wdGoToBookmark,$empty,$empty,'YourName'); // Note use of wdGoToBookmark, from the typelibrary and the use of $empty.
$word->Selection->TypeText($_GET['YourName']);

$word->Selection->GoTo(wdGoToBookmark,$empty,$empty,'YourAge');
$word->Selection->TypeText($_GET['YourAge']);

// Save it, close word and finish.
$word->Documents[1]->SaveAs("C:/{$_GET['YourName']}.doc");
$word->Quit();
$word->Release();
$word = null;
print
"Word closed.\n";
?>

The example document is ...

Hello [Bookmark of YourName], you are [Bookmark of YourAge] years old.

and it would be called ...

word.php?YourName=Richard%20Quadling&YourAge=35

Regards,

Richard.
pchason at juno dot com
11-Dec-2002 05:23
Searched for days on how to set up a multi-column html output grid that didn't use an array when creating an ADODB connection. Couldn't find one so I figured it out myself. Pretty simple. Wish I would have tried it myself sooner. Commented code with database connection is below...

<html>
<body>
<table>
<?php
//create the database connection
$conn = new COM("ADODB.Connection");
$dsn = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" . realpath("mydb.mdb");
$conn->Open($dsn);
//pull the data through SQL string
$rs = $conn->Execute("select clients from web");
$clients = $rs->Fields(1);
//start the multicolumn data output
$i = 0;
$columns = 5;
while (!
$rs->EOF){
//if $i equals 0, start a row
if($i == 0){
echo
"<tr>";
}
//then start writing the cells in the row, increase $i by one, and move to the next record
echo "<td>" . $clients->value . "</td>";
$i++;
$rs->movenext();
//once $i increments to equal $columns, end the row,
//and start the process over by setting $i to 0
if($i == $columns || $rs->EOF) {
echo
"</tr>";
$i = 0;
   }
}
//end multicolumn data output

//close the ADO connections and release resources
$rs->Close();
$conn->Close();
$rs = null;
$conn = null; ?>
</table>
</body>
</html>
daveNO at SPAMovumdesign dot com
27-Sep-2002 03:52
The documentation for this feature is a bit redundant. It mentions that COM performs and encourages information hiding (a.k.a. encapsulation) three times. Perhaps instead it could expand a bit on what COM is useful for, and particularly why combining it with PHP can be beneficial.

The contributed examples above do a nice job of illustrating the benefits of PHP+COM. In a nutshell, many Windows applications (especially office suites and databases) expose useful functionality through the COM interface.

For example, Microsoft Word can read RTF files and (of course) write Word Documents. You could use PHP to generate RTF and then use Microsoft Word via PHP's COM interface to convert the RTF to a DOC. The amazing thing about this is that you can actually insert PHP (or template) code into Word itself, because RTF files are text-based like HTML. Throw Distiller into the mix and you've got a web-based, template-driven, maybe even database-driven PDF generator!

Have fun,
Dave
tedknightusa at hotmail dot com
26-Sep-2002 03:29
A Notes example:

$session = new COM "Lotus.NotesSession" );
$session->Initialize($password);
  
$someDB = "C:\Lotus\Notes\Data\somedb.nsf";
$db = $session->GetDatabase("", $someDB) or die("Cannot get someDB.nsf");
$view = $db->GetView("some_view") or die("Some View not found");

$doc = $view->GetFirstDocument() or die("Unable to get Initial Some Document");

// loop through
while($doc){
  $col_vals = $doc->ColumnValues();
  echo $col_vals[0];
  $doc = $view->GetNextDocument($doc);
}
dwt at myrealbox dot com
27-Aug-2002 09:31
When first writing applications instancing COM objects I always faced the problem of the instanced program not terminating correctly although everything else worked fine. In fact the process had to be killed manually by using the task manager. When experimenting a bit I was able to isolate the cause for this peculiar behaviour to be illustrated by the sample code below:

<?php

//Accessing arrays by retrieving elements via function ArrayName(Index) works, but certainly is neither efficient nor good style
$excel=new COM("Excel.Application");
$excel->sheetsinnewworkbook=1;
$excel->Workbooks->Add();

$book=$excel->Workbooks(1);
$sheet=$book->Worksheets(1);

$sheet->Name="Debug-Test";
$book->saveas("C:\\debug.xls");

$book->Close(false);
unset(
$sheet);
unset(
$book);
$excel->Workbooks->Close();
$excel->Quit();
unset(
$excel);

//Accessing arrays as usual (using the [] operator) works, buts leads to the application not being able to terminate by itself
$excel=new COM("Excel.Application");
$excel->sheetsinnewworkbook=1;
$excel->Workbooks->Add();

$excel->Workbooks[1]->Worksheets[1]->Name="Debug-Test";
$excel->Workbooks[1]->saveas("C:\\debug.xls");

$excel->Workbooks[1]->Close(false);
$excel->Workbooks->Close();
$excel->Quit();
unset(
$excel);

?>

The sample code performs the same action twice and each time the file is properly created. Yet for some mysterious reason the instanced excel process won't terminate once you've accessed an array the way most programmers (especially those who do a lot of oop in c++) do! Therefore until the PHP developers become aware of this problem we'll have to use the inefficient coding style illustrated in the first example.
nospam at bol dot com dot br
21-Aug-2002 09:30
This is a sample to make a parametrized query using ADO via COM, this sample was used with Foxpro but will work's with most ADO complient databases. This was tested on IIS with WIN XP pro.

<?
// Create the main connection
$dbc = new COM("ADODB.Connection")  or die ("connection create fail");
$dbc->Provider = "MSDASQL";
$dbc->Open("FoxDatabase");
// Creates a temporary record set
$RSet = new COM("ADODB.Recordset");
// Create one ADO command
$cm  = new COM("ADODB.Command");
$cm->Activeconnection = $dbc;
// the ? inside values will be the parameters $par01 and $par02
$cm->CommandText "Insert Into testtable ( mycharfield,mymemofield) VALUES (?,?)" ;
$cm->Prepared = TRUE;
// Creates and append 2 parameters
$par01 = $cm->CreateParameter('ppar01',129,1,50,'ABCDEFGHIKL');
$cm->Parameters->Append($par01);
$par02 = $cm->CreateParameter('ppar01',129,1,50,'123456789012346789');
$cm->Parameters->Append($par02);
// Call 10 times the exec comand to show 10 different queries
for ($i = 1; $i <= 10; $i++) {
 
$par01->Value = 'Count '.$i;
 
$par02->Value = 'Passing here'.$i.' times';
 
$RSet = $cm->Execute;
}
$RSet = $dbc->Execute("select * from testtable");
while (!
$RSet->EOF){
  echo
$RSet->fields["mycharfield"]->value.' ' ;
  echo
$RSet->fields["mymemofield"]->value ;
  echo
'<BR>';
 
$RSet->movenext();
}
$RSet->close;
$dbc->close;
$cm->close;   
$RSet = null;
$dbc = null;
$cm = null;
?>
paulo at Ihatespam dot com
28-Jun-2002 04:48
Complementing Alex's Excell Example, let's print the SpreadSheet to a PDF file using Acrobat Distiller:

$wkb->PrintOut(NULL, NULL, NULL, NULL, "Acrobat Distiller");

There you go!!!
admin at purplerain dot org
19-Apr-2002 10:34
an easy way to convert your file from .doc to .html

// starting word
$word = new COM("word.application") or die("Unable to instanciate Word");

// if you want see thw World interface the value must be '1' else '0'
$word->Visible = 1;

//doc file location
$word->Documents->Open("E:\\first.doc");

//html file location  '8' mean HTML format
$word->Documents[1]->SaveAs("E:\\test_doc.html",8);

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

//free the object from the memory
$word->Release();
$word = null;
admin at purplerain dot org
02-Apr-2002 10:01
An easy way to send e-mail using your default Outlook account:
<?
$objApp
= new COM("Outlook.Application");
$myItem = $objApp->CreateItem(olMailItem);
$a=$myItem->Recipients->Add("admin@purplerain.org");
$myItem->Subject="Subject";
$myItem->Body="This is a Body Section now.....!";
$myItem->Display();
$myItem->Send();
?>
madon at cma-it dot com
07-Mar-2002 06:59
I thought this excel chart example could be useful.

Note the use of Excel.application vs Excel.sheet.

<pre>
<?php
  
print "Hi";
#Instantiate the spreadsheet component.
#    $ex = new COM("Excel.sheet") or Die ("Did not connect");
$exapp = new COM("Excel.application") or Die ("Did not connect");

#Get the application name and version   
print "Application name:{$ex->Application->value}<BR>" ;
print
"Loaded version: {$ex->Application->version}<BR>";

$wkb=$exapp->Workbooks->add();
#$wkb = $ex->Application->ActiveWorkbook or Die ("Did not open workbook");
print "we opened workbook<BR>";

$ex->Application->Visible = 1; #Make Excel visible.
print "we made excell visible<BR>";

$sheets = $wkb->Worksheets(1); #Select the sheet
print "selected a sheet<BR>";
$sheets->activate; #Activate it
print "activated sheet<BR>";

#This is a new sheet
$sheets2 = $wkb->Worksheets->add(); #Add a sheet
print "added a new sheet<BR>";
$sheets2->activate; #Activate it
print "activated sheet<BR>";

$sheets2->name="Report Second page";

$sheets->name="Report First page";
print
"We set a name to the sheet: $sheets->name<BR>";

# fills a columns
$maxi=20;
for (
$i=1;$i<$maxi;$i++) {
  
$cell = $sheets->Cells($i,5) ; #Select the cell (Row Column number)
  
$cell->activate; #Activate the cell
  
$cell->value = $i*$i; #Change it to 15000
}

$ch = $sheets->chartobjects->add(50, 40, 400, 100); # make a chartobject

$chartje = $ch->chart; # place a chart in the chart object
$chartje->activate; #activate chartobject
$chartje->ChartType=63;
$selected = $sheets->range("E1:E$maxi"); # set the data the chart uses
$chartje->setsourcedata($selected); # set the data the chart uses
print "set the data the chart uses <BR>";

$file_name="D:/apache/Apache/htdocs/alm/tmp/final14.xls";
if (
file_exists($file_name)) {unlink($file_name);}
#$ex->Application->ActiveWorkbook->SaveAs($file_name); # saves sheet as final.xls
$wkb->SaveAs($file_name); # saves sheet as final.xls
print "saved<BR>";

#$ex->Application->ActiveWorkbook->Close("False");   
$exapp->Quit();
unset(
$exapp);
?>

</pre>

Alex Madon
darkwings at 263 dot net
28-Feb-2002 03:11
now in PHP >=4.0.6
programming in window can use the
ADO through the COM like this:
$dbconn=new COM ("ADODB.Connection") or die ("connection create fail");
 $dbconn->Open("Provider=sqloledb;Data Source=ndht;Initial Catalog=printers;User Id=printers;Password=printers;");
 $rec=new COM("ADODB.Recordset") or die ("create Recordset error");
 while (!$rec->EOF)
 {
echo $rec->fields["fieldname"]->value."<br>";
$rec->movenext();
 }
 $rec->close();
 $dbconn->close();

but there's still a little question of working with the image field of mssql server.
kevin at vcconcepts dot com
31-Mar-2001 11:37
I thought i'd share with those of you unfamiliar with one of the cool things
about developing php on win32 systems..

http://www.phpbuilder.net/columns/alain20001003.php3

This is a good article, but i don't think the author hit the nail on the
head showing how useful this can be.

Now, checkout this article:
http://www.4guysfromrolla.com/webtech/040300-1.shtml

Notice how he describes 1) how to build a com object & 2) how to call and
use the com object from ASP.

In php, this is how you would call the same object:

<?
$instance
= new COM("Checkyear.LeapYear");
$isleapyear = $instance->IsLeapYear($year);
$instance->close();
if(
$isleapyear) {
echo
"The <b>$year</b> is a leap year";
}
else {
echo
"The <b>$year</b> is not a leap year";
}
?>

I hope this helps someone.. you can contact me at kevin@vcconcepts.com if
you would like to discuss this further.

<ccvs_voidCOM>
 Last updated: Sun, 02 May 2004
show source | credits | sitemap | contact | advertising | mirror sites 
Copyright © 2001-2004 The PHP Group
All rights reserved.
This mirror generously provided by: Italia OnLine S.p.a.
Last updated: Fri May 21 04:11:23 2004 CEST