Home Backend Development PHP Tutorial PHP string function example: string splitting

PHP string function example: string splitting

Jun 20, 2023 pm 01:58 PM
php string function instance String splitting

There are many string functions in PHP, among which the string splitting function is very commonly used. The string split function can split a string according to the specified delimiter and return an array. Below we will introduce several commonly used string splitting functions.

  1. explode function

The explode function can split the string according to the specified delimiter and return an array. The syntax is as follows:

explode(string $separator , string $string , int $limit = PHP_INT_MAX)
Copy after login

Parameter explanation:

  • $separator: required, specifies the separator, which can be a string or a string array.
  • $string: Required, specifies the string to be split.
  • $limit: Optional, specifies the maximum length of the returned array. Default is PHP_INT_MAX.

Sample code:

$str = "apple,banana,pear,orange";
$arr = explode(",", $str);
print_r($arr);
Copy after login

Output result:

Array
(
    [0] => apple
    [1] => banana
    [2] => pear
    [3] => orange
)
Copy after login
  1. str_split function

The str_split function can convert the string according to Divides by the specified length and returns an array. The syntax is as follows:

str_split ( string $string , int $split_length = 1 )
Copy after login

Parameter explanation:

  • $string: Required, specify the string to be split.
  • $split_length: Optional, specify the length of each element, the default is 1.

Sample code:

$str = "hello world";
$arr = str_split($str);
print_r($arr);
Copy after login

Output result:

Array
(
    [0] => h
    [1] => e
    [2] => l
    [3] => l
    [4] => o
    [5] =>  
    [6] => w
    [7] => o
    [8] => r
    [9] => l
    [10] => d
)
Copy after login
  1. strtok function

The strtok function can convert the string according to Split with the specified delimiter and return the first split substring. The syntax is as follows:

strtok ( string $string , string $token )
Copy after login

Parameter explanation:

  • $string: Required, specify the string to be split.
  • $token: required, specify the delimiter.

Sample code:

$str = "apple,banana,pear,orange";
$tok = strtok($str, ",");
while ($tok !== false) {
    echo "$tok<br>";
    $tok = strtok(",");
}
Copy after login

Output result:

apple
banana
pear
orange
Copy after login

Through the above example, we can see that using the string splitting function can quickly and easily split strings for processing. In actual development, we need to choose different string splitting functions according to different needs to achieve the best processing effect.

The above is the detailed content of PHP string function example: string splitting. For more information, please follow other related articles on the PHP Chinese website!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to convert characters to ascii code in php How to convert characters to ascii code in php Mar 03, 2023 pm 06:55 PM

In PHP, you can use the ord() function to convert characters into ascii code. This function can return the ASCII value of a single character or the first character in a string. The returned ASCII value will be displayed in integer form; the conversion syntax "ord (string)", the parameter "string" cannot be omitted, it is the string (or single character) from which the ASCII value is to be obtained.

How to replace a certain character to be empty in a php string How to replace a certain character to be empty in a php string Mar 06, 2023 pm 06:39 PM

There are two ways to replace a certain character with a null character in a PHP string: 1. Use the str_replace() function to replace the specified character with a null character. You only need to set the first parameter to the specified character and the second parameter to a null character. Syntax "str_replace("specified character","", $str)"; 2. Use the preg_replace() function with regular expressions to match the specified character and replace it with the null character, syntax "preg_replace('/specified character/', "",$str)".

How to remove all uppercase letters from string in php How to remove all uppercase letters from string in php Sep 26, 2022 pm 07:59 PM

Two removal methods: 1. Use preg_replace() to execute a regular expression to search for all uppercase letters and replace them with null characters. The syntax is "preg_replace('/[A-Z]/','',$str)". 2. Use preg_filter() to execute a regular expression to search for all uppercase letters and replace them with empty characters. The syntax is "preg_filter('/[A-Z]/','',$str)".

How to extract only Chinese characters from php string How to extract only Chinese characters from php string Sep 22, 2022 pm 07:44 PM

Two methods: 1. Use preg_match_all() with regular filter strings, the syntax is "preg_match_all("/[\x{4e00}-\x{9fff}]+/u","$str",$arr);" ; 2. Use preg_replace() with regular search for non-Chinese letters in the string and replace them with empty characters. The syntax is "preg_replace("/[^\x{4E00}-\x{9FFF}]+/u" ,'',$str)".

How to remove left and right characters from string in php How to remove left and right characters from string in php Mar 27, 2023 pm 03:29 PM

PHP is a typed programming language that is often used to develop web applications. During web development, you may need to perform various operations on strings, such as removing specific characters from a string, retaining numbers or letters in a string, etc. In this article, we will focus on how to remove specific characters on the left or right side of a string in PHP.

How to remove double quotes from string in php How to remove double quotes from string in php Mar 28, 2023 pm 04:54 PM

PHP is a very popular programming language and one of the preferred tools for building dynamic websites. In PHP development, we often need to operate strings, and one common requirement is to remove double quotes from strings. In this article, we will introduce some methods to remove double quotes from PHP strings.

What are the string delimiters in php? What are the string delimiters in php? Sep 23, 2022 pm 05:48 PM

There are two types of PHP string delimiters: 1. Heredoc delimiter. After the "<<<" operator, an identifier must be provided, followed by a newline, followed by the string itself, and finally the previously defined identifier must be used. as an end sign. 2. Nowdoc delimiter. After the "<<<" operator, an identifier enclosed in single quotes must be provided, followed by a newline, followed by the string itself, and finally the previously defined identifier must be used as the end mark.

How to sort strings in php How to sort strings in php Sep 08, 2022 pm 08:02 PM

Implementation steps: 1. Use the str_split() function to convert the string into a character array, the syntax is "str_split(string)"; 2. Use the asort() or arsort() function to sort the character array in ascending or descending order, the syntax "asort (character array)" or "arsort (character array)"; 3. Use the implode() function to convert the sorted character array back to a string, the syntax is "implode (sorted character array)".

See all articles