1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/tests/testobj
Andi Gutmans 8f51f72dc6 - Fix the new operator incompatibility.
- 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.
1999-07-26 16:57:06 +00:00

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