mirror of
https://github.com/php/php-src.git
synced 2026-03-25 16:52:18 +01:00
- I commented PHP_FUNCTION(strtotime) in datetime.c because it stopped win32 from compiling. This needs to be fixed!!! - Check out libzend to compile the tree now.
16 lines
274 B
Plaintext
16 lines
274 B
Plaintext
<?
|
|
|
|
class foobar {
|
|
function foobar() {
|
|
print "foobar!\n";
|
|
$this->initialized = 1;
|
|
}
|
|
};
|
|
|
|
$foo = new foobar; // or die("Unable to construct foobar\n");
|
|
print $foo->initialized;
|
|
//$word = new COm("word.application");
|
|
//$word->visible = true;
|
|
//sleep(5);
|
|
//$word->quit();
|