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

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.

share|improve this question
2  
Nice illustration RoBorg, if I have a key over 128mb I'll probably find myself on the daily WTF. Many thanks. – Ross Jan 22 '09 at 13:18

2 Answers

up vote 36 down vote accepted

It seems to be limited only by the script's memory limit.

A quick test got me a key of 128mb no problem:

ini_set('memory_limit', '1024M');

$key = str_repeat('x', 1024 * 1024 * 128);

$foo = array($key => $key);

echo strlen(key($foo)) . "<br>";
echo strlen($foo[$key]) . "<br>";
share|improve this answer
4  
yikes! well I certainly don't have to worry about my keys going slightly over 255 chars then. – thomasrutter May 5 '09 at 4:51

There is no practical limit to string size in PHP. According to the manual:

Note: It is no problem for a string to become very large. PHP imposes no boundary on the size of a string; the only limit is the available memory of the computer on which PHP is running.

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.

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.