Answers for "string into array in php"

PHP
0

php string to array

$array = explode(' ', $string);
Posted by: Guest on July-04-2021
0

php string to array

$array = str_split($string);
Posted by: Guest on December-20-2021
0

string to array php

str_split ( string $string [, int $split_length = 1 ] ) : array
Posted by: Guest on February-24-2020
-2

how to split string into array php

string = ".hidden_file"
str_split(string); //split char by char
Posted by: Guest on June-03-2021

Code answers related to "string into array in php"

Browse Popular Code Answers by Language