Hi All,

PHP crashes on Win32 with the following code

class c1 {
        var $a = null;
        var $b = null;
        
        function c1($a, $b) {
                $this->a = $a;
                $this->b = $b;
        }
}

$handler = new c1("1", "");

changing the code to this seams to fix the problem.

class c1 {
        var $a;
        var $b;
        
        function c1($a, $b) {
                $this->a = $a;
                $this->b = $b;
        }
}

$handler = new c1("1", "");

- Frank




-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to