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)".
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); ?>
<?php $str="Hello"; $arr=str_split($str,2); var_dump($arr); ?>
If length is less than 1, the str_split() function will return FALSE.
<?php $str="Hello"; $arr=str_split($str,-1); var_dump($arr); ?>
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); ?>
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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Dreamweaver Mac version
Visual web development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools
