|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-06-06 09:26 UTC] mfischer@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 14:00:01 2025 UTC |
i wrote an object definition(class session) in which i implemented all assesor/mutator methods i need on some vars in the object. in auto_header.php script i have following logic: if (!isset($session)) { $session = new Session(session_id()); session_register("session"); } else { if ($session->isValid()) { echo("session is valid!"); } else { echo("session has expired!"); }//esle }//esle i also require class definition and constants definition files in the beggining of the script. php engine gives me Fatal Error on line #5[if ($session->isValid()) { ]. here is the full text: Fatal error: The script tried to execute a method or access a property of an incomplete object. Please ensure that the class definition session of the object you are trying to operate on was loaded _before_ the session was started my hipothesis is that php doesn't have capabilities to save complex object as session vars. anyone has any sugestions? thx, alex