PHP | str_split() Function
The str_split() is an inbuilt function in PHP and is used to convert the given string into an array. This function basically splits the given string into smaller strings of length specified by the user and stores them in an array and returns the array.
Syntax:
array str_split($org_string, $splitting_length)
Parameters:
The function accepts two parameters and are described below:
- $org_string (mandatory): This refers to the original string that the user needs to split into an array.
- $splitting_length (optional): This refers to the length of each array element, we wish to split our string into. By default the function accepts the value as 1.
Return Values: The function returns an array. If the length parameter exceeds the length of the original string, then the whole string is returned as a single element. If the length parameter is less than 1, then False is returned. By default length is equal to 1.
Examples:
Input: "Hello"
Output:
Array
(
[0] => H
[1] => e
[2] => l
[3] => l
[4] => o
)
The below program will explain the working of the str_split() function.
<?php // PHP program to display the working of str_split() $string = "Geeks"; // Since second argument is not passed, // string is split into substrings of size 1. print_r(str_split($string)); $string = "GeeksforGeeks"; // Splits string into substrings of size 4 // and returns array of substrings. print_r(str_split($string, 4)) ?> |
Output:
Array
(
[0] => G
[1] => e
[2] => e
[3] => k
[4] => s
)
Array
(
[0] => Geek
[1] => sfor
[2] => Geek
[3] => s
)
Reference:
http://php.net/manual/en/function.str-split.php
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- How to get the function name from within that function using JavaScript ?
- p5.js | hex() function
- PHP | pi( ) Function
- D3.js | d3.max() function
- p5.js | str() function
- PHP | Ds\Map map() Function
- PHP | Ds\Map last() Function
- p5.js | box() Function
- p5.js | arc() Function
- PHP | pow( ) Function
- PHP | Ds\Set last() Function
- PHP | Ds\Set first() Function
- p5.js | sin() function
- PHP | Ds\Set add() Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



