structure of com object

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
tores
Forum Contributor
Posts: 120
Joined: Fri Jun 18, 2004 3:04 am

structure of com object

Post by tores »

Hello

can anyone tell me what the stucture of the com objects look like.

I am running a python script in the background of my php script, but I need some way of controlling it. It is necessary to be able to kill the python script, so it would be nice if I knew which pid to kill

my code looks like this:

Code: Select all

$WshShell = new COM("WScript.Shell");
$oExec = $WshShell->Run('python script.py', 3, false);
regards tores
Post Reply