php-src/tests/testobj
1999-07-08 21:42:29 +00:00

15 lines
249 B
Plaintext

<?
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();