Are there limits for session variables?

后端 未结 4 1637
粉色の甜心
粉色の甜心 2020-11-27 16:07

As the title says, are there limits (if any) for session variables or they\'re considered as usual variables and can store equal amount of data?

I\'m lookin

4条回答
  •  暖寄归人
    2020-11-27 16:35

    No, there is no limit on much space a session may have (or how many variables a session may possess). The only limit is the specs on your computer, this is defined by your available memory_limit in your php.ini . Be aware that this space will be shared among all sessions for all users.

提交回复
热议问题