Hello folks! welcome back to a new edition of our tutorial on PHP. In this tutorial guide, we are going to be studying about the PHP chunk_split() Function.
The PHP chunk_split() function is used for splitting a string into chunks.
The PHP chunk_split() function is used for splitting a string into chunks.
Syntax
Following below is the syntax to use this function -
string chunk_split ( string $body [, int $chunklen = 76 [, string $end = "\r\n" ]] )
READ: PHP | chr() Function
Parameter Details
Sr.No | Parameters & Description |
---|---|
1 | body In body, string to be chunked |
2 | chunklen It contains the information about chunk length |
3 | end It contains the information about line ending string |
Return Value
This function returns the chunked string.
Example
Try out the example below -
<?php $str = "webdesigntutorialz"; echo chunk_split($str,1,"."); ?>
Output
When the above code is executed, it will produce the following result -
w.e.b.d.e.s.i.g.n.t.u.t.o.r.i.a.l.z.
Alright guys! This is where we are going to be rounding up for this tutorial post. In our next tutorial, we will be studying about the PHP convert_cyr_string() Function.
Feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.