Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on rails and I want to check whether user key is present or not in session hash. How can I check this?

PS: I don't want to check whether this value is nil or not. I want to check weather user KEY exists or not.

share|improve this question
2  
You meant "hash[map]" when you said "array" (arrays don't have keys and session in rails is a hash (with indifferent access - though that's irrelevant to the question), not an array). I fixed that for you. – sepp2k Dec 24 '10 at 22:08
@sepp2k thnks... – Mohit Jain Dec 25 '10 at 1:25

1 Answer

up vote 156 down vote accepted

Hash's has_key? method tells you whether a given key is present or not.

session.has_key?("user")
share|improve this answer

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.