Home > Article > Backend Development > How to split string into array in php
In PHP, you can use the str_split() function to split a string and convert it into an array. This function can split the string into several substrings according to the required length, and combine these substrings into one Array; syntax "str_split(string,length)".
The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer
In php, you can use the str_split() function to split the string into an array. This function splits a string into an array according to the specified length.
The str_split() function can split a string into several substrings according to the required length, and combine these substrings into an array.
Syntax format:
str_split(string,length)
string Required. Specifies the string to be split.
#length Optional. Specifies the length of each array element. The default is 1.
<?php $str="Hello"; $arr=str_split($str); var_dump($arr); ?>
<?php $str="Hello"; $arr=str_split($str,2); var_dump($arr); ?>
If length is less than 1, the str_split() function will return FALSE.
<?php $str="Hello"; $arr=str_split($str,-1); var_dump($arr); ?>
If length is greater than the length of the string, the entire string will be returned as the only element of the array.
<?php $str="Hello"; $arr=str_split($str,5); var_dump($arr); ?>
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of How to split string into array in php. For more information, please follow other related articles on the PHP Chinese website!