[PHP-DEV] Bug #700: class constructors cause PHP to crash From: z-kimmel <email protected>
Date: 08/27/98

From: z-kimmel <email protected>
Operating system: NT 4.0
PHP version: 3.0.3
PHP Bug Type: Reproduceable crash
Bug description:
This is a pretty nasty bug. This following code will cause PHP to crash under NT.

<?php

class example {

var $x;

function example($a) {
        $this->x=$a;
}

function test() {
        $blah = new example(5);
}

}

print("Done.");

?>

--
PHP Development Mailing List   http://www.php.net/
To unsubscribe send an empty message to php-dev-unsubscribe <email protected>
For help: php-dev-help <email protected>