SitePoint Sponsor

User Tag List

Results 1 to 5 of 5

Thread: php variable limits

  1. #1
    SitePoint Evangelist Tapan's Avatar
    Join Date
    May 2005
    Location
    India
    Posts
    515
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    php variable limits

    Hello,

    Is there any limit on how much data can be stored in variables in php ?

    Thanks.

  2. #2
    Do. Or do not. There is no try silver trophy
    SitePoint Award Recipient ScallioXTX's Avatar
    Join Date
    Aug 2008
    Location
    The Netherlands
    Posts
    8,341
    Mentioned
    85 Post(s)
    Tagged
    2 Thread(s)
    From the manual

    Quote Originally Posted by php.net
    The size of an integer is platform-dependent, although a maximum value of about two billion is the usual value (that's 32 bits signed). 64-bit platforms usually have a maximum value of about 9E18. PHP does not support unsigned integer s. Integer size can be determined using the constant PHP_INT_SIZE, and maximum value using the constant PHP_INT_MAX since PHP 4.4.0 and PHP 5.0.5.
    As for strings (and I think that also applies to arrays) the limit would be the memory limit of the PHP process AFAIK.

  3. #3
    Keeper of the SFL StarLion's Avatar
    Join Date
    Feb 2006
    Location
    Atlanta, GA, USA
    Posts
    3,518
    Mentioned
    31 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by ScallioXTX View Post
    As for strings (and I think that also applies to arrays) the limit would be the memory limit of the PHP process AFAIK.
    *the SUM limit of all variables and resources would be the memory limit of the PHP process.

    Generally speaking though, if you hit the memory allocation limit, you're doing something wrong.

  4. #4
    SitePoint Evangelist Tapan's Avatar
    Join Date
    May 2005
    Location
    India
    Posts
    515
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    And how would i know if i am hitting the limit and what will be the consequences ?

  5. #5
    SitePoint Wizard cranial-bore's Avatar
    Join Date
    Jan 2002
    Location
    Australia
    Posts
    2,633
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    out of memory error
    The amount of memory PHP will/can consume can be set in php.ini (e.g memory_limit = 128M)
    mikehealy.com.au
    diigital.com art, design . Latest WorkSaturday Morning

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •