Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an array called config. I'm trying to echo a variable from the array in the session.

I've tried:

echo $this->session->userdata('config['item']'); 

but it doesn't work. What's wrong with my syntax here? I've print_r'd my session and the items are in the config array. I've also tried:

echo $this->session->userdata("config['item']");

I get no errors this time, but no data either.

share|improve this question

3 Answers

up vote 8 down vote accepted

If config is an array . And item is string name of what you want to get from config then

echo $this->session->userdata($config['item']);

or

echo $_SESSION[$config['item']];

If config is an array inside session you should first get it.

$tmp = $this->session->userdata('config');
echo $tmp['item'];

or

echo $_SESSION['config']['item'] 

Sorry for my english.

share|improve this answer
Your English is fine. That did the trick. Thanks. – sehummel Jan 21 '11 at 16:27
nice explanation your codes helped me a lot thank you – Yasitha Apr 18 at 7:08

If you want to use the session array, use the variable, not the function:

echo $this->session->userdata['user_data']['item'];

If you want to write:

$this->session->userdata['user_data']['item'] = 'value';
$this->session->userdata['other_data']['other'] = 'value2';
$this->session->sess_write();

This allows you to edit values in array just like you do with $_SESION['user_data']['avatar'] = $avatar, with 'only' one extra line and only using CI library.

share|improve this answer

Always escape your string it should be this way:

echo $this->session->userdata('config[\'item\']'); 
share|improve this answer
Yeah, I realized I had a quoting issue. But this yields no data even though I can print_r it. – sehummel Jan 21 '11 at 16:11
then u must see this codeigniter.com/user_guide/libraries/config.html how to access ur config vars – Abhishek Dilliwal Jan 21 '11 at 16:14
The config array is in my userdata. Could the two be colliding? – sehummel Jan 21 '11 at 16:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.