mirror of
https://github.com/php/php-src.git
synced 2024-11-26 11:23:47 +08:00
15 lines
249 B
Plaintext
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();
|