Home  >  Article  >  Backend Development  >  How to split string into array in php

How to split string into array in php

青灯夜游
青灯夜游Original
2021-12-06 18:34:487253browse

In PHP, you can use the str_split() function to split a string and convert it into an array. This function can split the string into several substrings according to the required length, and combine these substrings into one Array; syntax "str_split(string,length)".

How to split string into array in php

The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

In php, you can use the str_split() function to split the string into an array. This function splits a string into an array according to the specified length.

The str_split() function can split a string into several substrings according to the required length, and combine these substrings into an array.

Syntax format:

str_split(string,length)
  • string Required. Specifies the string to be split.

  • #length Optional. Specifies the length of each array element. The default is 1.​

<?php
$str="Hello";
$arr=str_split($str);
var_dump($arr);
?>

How to split string into array in php

<?php
$str="Hello";
$arr=str_split($str,2);
var_dump($arr);
?>

How to split string into array in php

If length is less than 1, the str_split() function will return FALSE.

<?php
$str="Hello";
$arr=str_split($str,-1);
var_dump($arr);
?>

How to split string into array in php

If length is greater than the length of the string, the entire string will be returned as the only element of the array.

<?php
$str="Hello";
$arr=str_split($str,5);
var_dump($arr);
?>

How to split string into array in php

Recommended learning: "PHP Video Tutorial"

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

Statement:
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