PHP explode () String Conversion Array

Source: Internet
Author: User
Tags php explode

There are many ways to convert strings into arrays in php. If there is regularity, we can directly use the explode () function to cut strings into arrays.

Definition and usage

The explode () function separates strings into arrays.

Syntax

Explode (separator, string, limit)

Example

In this example, we split the string into an array:

The Code is as follows: Copy code

$ Str = "Hello world. It's a beautiful day .";
Print_r (explode ("", $ str ));
?>

Output:

The Code is as follows: Copy code

Array
(
[0] => Hello
[1] => world.
[2] => It's
[3] =>
[4] => beautiful
[5] => day.
)

In this way, our characters are converted into arrays according to our settings.


Related Article

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.