|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2000-12-05 07:41 UTC] sniper@php.net
  [2000-12-30 19:26 UTC] sniper@php.net
  [2001-03-09 20:55 UTC] sniper@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 04:00:01 2025 UTC | 
When I have an object that I register to a session, it first describes the variable name, then the name of the class from which it was instantiated, and finally the property names and values for any of that objects properties. A problem exists when you try to register an object which has a different one nested within it. In this case, no mention of the inner object is registered, and the next time you attempt to call it, you get an error message of trying to call a method of a undeclared object. Ex: ===================================== file class.test.php <? class inner { function get_name($first_name,$last_name) { $return $first_name." ".$last_name; } } class outer extends inner { var fname; var lname; function outer ($fname,$lname) { $this->fname=$fname; $this->lname=$lname; } function x() { return $this->inner->get_name($this->fname,$this->lname); } } ?> ============================= file test1.html: <? require_once("class.test.php"); $testClass=new outer("jon","smith"); session_register("testClass"); ?> ============================= file test2.html: <? require_once("class.test.php"); session_start(); echo "FIRST_NAME: ".$testClass->fname."<br>"; echo "LAST_NAME: ".$testClass->lname."<br>"; echo "FULL_NAME: ".$testClass->x()."<br>"; ?>