cbassett03 Posted July 20, 2012 Share Posted July 20, 2012 Does anyone know how (or if) you can store an array a value into a $_SESSION variable? I want to try to store a 2-dimensional array into a session variable named "configurations" that will be stored in the $_SESSION superglobal. The "configurations" array will have two values. I'm trying to do this for simplicity and easy parsing. Any suggestions would be helpful. Link to comment https://forums.phpfreaks.com/topic/266006-store-an-array-of-values-into-a-_session-variable/ Share on other sites More sharing options...
xyph Posted July 20, 2012 Share Posted July 20, 2012 Just like any other variable. <?php $array = array('one','two','three',array('four')); $_SESSION['key1'] = $array; $_SESSION['key2'] = array('four','three','two',array('one')); var_dump($_SESSION); ?> Output array 'key1' => array 0 => string 'one' (length=3) 1 => string 'two' (length=3) 2 => string 'three' (length=5) 3 => array 0 => string 'four' (length=4) 'key2' => array 0 => string 'four' (length=4) 1 => string 'three' (length=5) 2 => string 'two' (length=3) 3 => array 0 => string 'one' (length=3) Link to comment https://forums.phpfreaks.com/topic/266006-store-an-array-of-values-into-a-_session-variable/#findComment-1363071 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.