How to explode a string in php

藏色散人
Release: 2023-02-28 14:56:02
Original
3574 people have browsed it

How to explode a string in php

How to explode a string in php?

In PHP, you can use the built-in function explode() to explode a string.

Recommended: "PHP Tutorial"

Definition and usage

explode() function breaks up a string into an array.

Note: The "separator" parameter cannot be an empty string.

Note: This function is binary safe.

Syntax

explode(separator,string,limit)
Copy after login

Parameters

separator required. Specifies where to split the string.

string Required. The string to split.

limit

Optional. Specifies the number of array elements to be returned.

Possible values:

Greater than 0 - Returns an array containing at most limit elements

Less than 0 - Returns an array containing all but the last -limit elements Array

0 - Returns an array containing one element

Return value: Returns an array of strings

Example 1

Break the string into an array :

<?php
$str = "Hello world. I love Shanghai!";
print_r (explode(" ",$str));
?>
Copy after login

Output:

Array ( [0] => Hello [1] => world. [2] => I [3] => love [4] => Shanghai! )
Copy after login

Use the limit parameter to return some array elements:

<?php
$str = &#39;one,two,three,four&#39;;
// 零 limit
print_r(explode(&#39;,&#39;,$str,0));
// 正的 limit
print_r(explode(&#39;,&#39;,$str,2));
// 负的 limit
print_r(explode(&#39;,&#39;,$str,-1));
?>
Copy after login

Output:

Array ( [0] => one,two,three,four ) Array ( [0] => one [1] => two,three,four ) Array ( [0] => one [1] => two [2] => three )
Copy after login

The above is the detailed content of How to explode a string in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template