php-src/tests/testobj

16 lines
274 B
Plaintext
Raw Normal View History

1999-04-08 05:05:13 +08:00
<?
class foobar {
function foobar() {
print "foobar!\n";
$this->initialized = 1;
}
};
1999-04-08 05:05:13 +08:00
1999-05-30 02:28:46 +08:00
$foo = new foobar; // or die("Unable to construct foobar\n");
print $foo->initialized;
1999-05-30 02:28:46 +08:00
//$word = new COm("word.application");
//$word->visible = true;
//sleep(5);
//$word->quit();