Maximum Limit of Session Variables?

Not for 'how-to' coding questions but PHP theory instead, this forum is here for those of us who wish to learn about design aspects of programming with PHP.

Moderator: General Moderators

Post Reply
shwathi
Forum Newbie
Posts: 6
Joined: Mon Mar 15, 2004 12:29 am
Contact:

Maximum Limit of Session Variables?

Post by shwathi »

What is the maximum limit of the number of session variables that are allowed to be used? What is the maximum size limit (storage) of these session variables? Someone help me with atleast an approximate range.

Thanks in advance,
Shwathi :)
User avatar
patrikG
DevNet Master
Posts: 4235
Joined: Thu Aug 15, 2002 5:53 am
Location: Sussex, UK

Post by patrikG »

PHP Manual - Session handling functions wrote:The session support allows you to register arbitrary numbers of variables to be preserved across requests.
All session data is stored in the specified directory (usually "/tmp") - so the quantity of session data you want to store depends on that.
Post Reply