Ec (2); phpexplode instance and tutorial arrayexplode (stringseparator, stringstring [, intlimit]) separator required. Specifies where to split the string. String is required. The string to be split. Limit is optional. Specifies the maximum number of returned array elements. Each element is a substring of a string, which is separat, script, ec (2), and script.
Php explode instance and tutorial
Array explode (string separator, string [, int limit])
Separator is required. Specifies where to split the string.
String is required. The string to be split.
Limit is optional. Specifies the maximum number of returned array elements.
Each element is a substring of a string, which is separated by a string separator as a boundary point.
If the limit parameter is set, the returned array contains a maximum of limit elements.
The rest of the string.
If separator is a null string (""), explode () returns FALSE. If the separator package
If the included value cannot be found in string, explode () returns an array containing a single string element.
In this example, we split the string into an array:
$ Str = "Hello world. It's a beautiful day .";
Print_r (explode ("", $ str ));
?>
Array
(
[0] => Hello
[1] => world.
[2] => It's
[3] =>
[4] => beautiful
[5] => day.
)
Instance 2
// Use the explode function to split a string into an array
$ Source = "hello1, hello2, hello3, hello4, hello5"; // separate strings by commas
$ Hello = explode (',', $ source );
For ($ index = 0; $ index Echo $ hello [$ index]; echo"
";
}
Instance 3
$ Foo = 'uno dos tres'; // two spaces between "dos" and "tres"
Print_r (explode ('', $ foo ));
?>
Array
(
[0] => uno
[1] => dos
[2] =>
[3] => tres
)
Remember that explode () can be returned. If they are separated, they are repeated twice (or more empty elements), as shown below
Example:
PHP implode () function example tutorial