Retreiving objects from Sessions
Posted on
16th Feb 2014 07:03 pm by
admin
Hi all,
I am getting really frustrated with storing and retreiving objects from a session. But it may be because of my lack of knowledge in sessions
First some system specs:
OS - Vista Home 32bit
Webserver - IIS 7
PHP - PHP 5.2.11
php.ini
session.auto_start = 1
So, when I decide to store an object array in the session, it works just fine. I can also retrieve it from the session but with an extra attribute mentioning: "__PHP_Incomplete_Class_Name" with the value of the Object Name.
Code when I try to retrieve object from session:
Code: $hits = $_SESSION['hitsArray']; // Array of MyObject
AMethodThatDoesSomething($hits[0]); // Requires MyObject Type
And this is where it fails:
I get following information in the debugger:
__PHP_Incomplete_Class_Name | MyObject
Attribute 1 | A value
Attribute 2 | Another Value
....And so on....
Ok, so I did some research and found out objects do not work if you have "session.auto_start = 1" in php.ini
AND that you need to add following line above your session_start():
Code:
require_once("MyObject.php");
session_start();
header("Cache-control: private");
session_register('hitsArray'); // Array of MyObject
$_SESSION['hitsArray'] = $hits; // Store into session
So, I changed "session.auto_start = 0" in php.ini and added the required line above. Well then it didn't even store my object array in the session in the first place!
Now I feel that I am stumbling in the dark and hope for someone to be able to help me in my ordeal!
No comments posted yet
Your Answer:
Login to answer
246
49
Other forums
Connect to database that isn't localhost
I am currently doing a small script for a company that doesn't have mySql support on there hosting.
Multiple WHILE loops help
Hi there. I'm writing an application that is pulling and displaying results for real estate listing
tag inside php... hi
Code: <?php echo "<td width="$columnWidth%" align=&Help pulling in 'id' with "read more" link I'm trying to create snippets of my articles in the cms I'm creating, and then have them redirect to Can't shake the "Warning: include()" error I've just uploaded my site to a new server and where I have PHP include tags in my HTML, the browser Simple Scraper... Weird Output Okay, maybe I just need a Blue Monster and some sleep, but....
I'm scraping a ringtone site Displaying an image using echo command I had done a query on my database, one of the fields being an image reference to a directory where a Search in the PHP Files have to search asterisk(*) in the php code of the php files .
In the html page one text box IIS7 and getimagesize() problem I have just discovered after hrs of trying to fix a problem where it's coming from. It's to do with Warehouse Management Hi,
On our system, we have two storage locations ( A and B ) where A is the main factory
|