blob: 1c2aa7f2c0f84aac5914327c8b824628e38bd4b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?
class foobar {
function foobar() {
print "foobar!\n";
$this->initialized = 1;
}
};
$foo = new foobar; // or die("Unable to construct foobar\n");
//$word = new COm("word.application");
//$word->visible = true;
//sleep(5);
//$word->quit();
|