From:             [EMAIL PROTECTED]
Operating system: Linux Slackware and Cobalt Raq4
PHP version:      4.1.1
PHP Bug Type:     Reproducible crash
Bug description:  Object and sessions, no way!

FIRST OUTPUT:
New object
REFRESH BROWSER:
Fatal error: The script tried to execute a method or access a property of
an incomplete object. Please ensure that the class definition binladen of
the object you are trying to operate on was loaded _before_ the session was
started in test.php on line 16

Note: The class is defined before the session start!

<?php
class BinLaden{
var $wow;
function BinLaden($Parola){
        $this->wow=$Parola;
        }
}

session_start();

if(!isset($wa)) {
        $wa = new BinLaden("Hello Word");
        session_register('wa');
        print "New object<br>";
} else {
        echo($wa->cazz);
        print "Object from session<br>";
}

?>
-- 
Edit bug report at: http://bugs.php.net/?id=14864&edit=1


-- 
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