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

I would like to know what's the maximum size that can be stored in a php session,

Thanks

share|improve this question
1  
I rarely agree with the Col. But I do here. You are doing something wrong if you need to ask this. – DampeS8N Jan 10 '11 at 18:27

2 Answers

up vote 28 down vote accepted

You can store as much data as you like within in sessions. All sessions are stored on the server. The only limits you can reach is the maximum memory a script can consume at one time, which by default is 128MB.

(Similar answers: Ideal PHP Session Size? - some useful comments)

share|improve this answer

This is limited by max file size of your operating system (if storing session to file) or column size (if storing session to database).

Using custom handlers, it is possible to have a session file that is greater in size than the amount set in memory_limit.

Therefore, it is a combination of max file/column size and memory limit.

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.