Phpexplode instance and tutorial-PHP source code

Source: Internet
Author: User
Tags php explode
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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.