I am generating associative arrays and the key value is a string concat of 1..n columns.
Is there a max length for keys that will come back to bite me? If so, I'll probably stop and do it differently.
|
|
It seems to be limited only by the script's memory limit. A quick test got me a key of 128mb no problem:
|
|||||
|
|
There is no practical limit to string size in PHP. According to the manual:
It is safe to assume that this would apply to using strings as keys in arrays as well, but depending on how PHP handles its lookups, you may notice a performance hit as strings get larger. |
|||
|
|