Home >>PHP String Functions >PHP chunk_split() Function
PHP Chunk_split() function is used to split the given input string into small chunks of defined length.The Chunk_split() function is an in-built function of PHP. We give the input string and the function returns us the split string chunks as the result. Syntax
Syntax :
string chunk_split($string, $length, $end)
The chunk_split() function can pass upto 3 parameters in which the $string is the given input string which we want to break in to smaller chunks, $length is the specific length of the chunks, length of all the chunks will be equal to this parameter value, and the $end parameter defines how the line will end when the chunks get separated.
Let's understand this with some example:
<html> <body> <?php $str = "PHP is a general-purpose scripting language"; echo chunk_split($str,6)."<br>"; echo chunk_split($str,10); ?> </body> </html>
Example 2
<html> <body> <?php $str = "PHPTPOINT"; echo chunk_split($str,1,".")."<br>"; echo chunk_split($str,3,"*"); ?> </body> </html>
Example 3
<html> <body> <?php $str = "PHP is a general-purpose scripting language that is especially suited to server-side web development, in which case PHP generally runs on a web server"; echo chunk_split($str,6,":::")."<br>"; echo chunk_split($str,10,"!!"); ?> </body> </html>