In PHP, we usually use strings as variables to store and process a set of data, but sometimes we need to convert strings into arrays to make data processing more convenient. This article will explain how to convert a string to an array using functions in PHP.
1. Use the explode function to split a string into an array
PHP provides a very convenient function called explode(), which can cut a string into arrays separated by specified delimiters. Multiple array elements.
Syntax:
array explode ( string $delimiter , string $string [, int $limit = PHP_INT_MAX ] )
Parameter description:
Sample code:
$str = "apple,banana,orange"; $arr = explode(",", $str); print_r($arr);
In the above code, we use commas as delimiters to split the string into an array, and the output result is:
Array ( [0] => apple [1] => banana [2] => orange )
2. Use the str_split function to split the string into an array of characters
The str_split() function can split a string into an array of each character.
Syntax:
array str_split ( string $string [, int $split_length = 1 ] )
Parameter description:
Sample code:
$str = "Hello World"; $arr = str_split($str); print_r($arr);
In the above code, we split the string into a character array, and the output result is:
Array ( [0] => H [1] => e [2] => l [3] => l [4] => o [5] => [6] => W [7] => o [8] => r [9] => l [10] => d )
3. Use preg_split The function splits a string into an array
preg_split() function can split a string according to a regular expression.
Syntax:
array preg_split ( string $pattern , string $subject [, int $limit = -1 [, int $flags = 0 ]] )
Parameter description:
Sample code:
$str = "apple1banana2orange3"; $arr = preg_split("/\d/", $str); print_r($arr);
In the above code, we use regular expressions to remove numbers from the string, and the output result is:
Array ( [0] => apple [1] => banana [2] => orange )
Summary
PHP provides a variety of functions for converting strings to arrays. Different functions are suitable for different scenarios. Using these functions allows us to process data more conveniently. In actual use, we need to choose which function to use based on the actual situation.
The above is the detailed content of How to convert string to array in php. For more information, please follow other related articles on the PHP Chinese website!