Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the maximum length of a String in PHP?

Tags:

php

So how big can a $variable in PHP get? I've tried to test this, but I'm not sure that I have enough system memory (~2gb). I figure there has to be some kind of limit. What happens when a string gets too large? Is it concatenated, or does PHP throw an exception?

like image 871
rook Avatar asked Jul 06 '10 18:07

rook


People also ask

What is the maximum length of a string variable?

A character-string value is a sequence of characters. The number of characters in a sequence is called the length of the sequence. In Open PL/I, the maximum length of a string value is 32767 bytes or characters. A character-string of zero length is called a null string.

How can I limit word count in PHP?

function limit_text($text, $limit) { if (str_word_count($text, 0) > $limit) { $words = str_word_count($text, 2); $pos = array_keys($words); $text = substr($text, 0, $pos[$limit]) . '...'; } return $text; } echo limit_text('Hello here is a long sentence that will be truncated by the', 5);


1 Answers

http://php.net/manual/en/language.types.string.php says:

Note: As of PHP 7.0.0, there are no particular restrictions regarding the length of a string on 64-bit builds. On 32-bit builds and in earlier versions, a string can be as large as up to 2GB (2147483647 bytes maximum)

In PHP 5.x, strings were limited to 231-1 bytes, because internal code recorded the length in a signed 32-bit integer.


You can slurp in the contents of an entire file, for instance using file_get_contents()

However, a PHP script has a limit on the total memory it can allocate for all variables in a given script execution, so this effectively places a limit on the length of a single string variable too.

This limit is the memory_limit directive in the php.ini configuration file. The memory limit defaults to 128MB in PHP 5.2, and 8MB in earlier releases.

If you don't specify a memory limit in your php.ini file, it uses the default, which is compiled into the PHP binary. In theory you can modify the source and rebuild PHP to change this default value.

If you specify -1 as the memory limit in your php.ini file, it stop checking and permits your script to use as much memory as the operating system will allocate. This is still a practical limit, but depends on system resources and architecture.


Re comment from @c2:

Here's a test:

<?php  // limit memory usage to 1MB  ini_set('memory_limit', 1024*1024);  // initially, PHP seems to allocate 768KB for basic operation printf("memory: %d\n",  memory_get_usage(true));  $str = str_repeat('a',  255*1024); echo "Allocated string of 255KB\n";  // now we have allocated all of the 1MB of memory allowed printf("memory: %d\n",  memory_get_usage(true));  // going over the limit causes a fatal error, so no output follows $str = str_repeat('a',  256*1024); echo "Allocated string of 256KB\n"; printf("memory: %d\n",  memory_get_usage(true)); 
like image 80
Bill Karwin Avatar answered Oct 22 '22 14:10

Bill Karwin