Answers for "str to array php"

PHP
1

string array to array in php

parse_str(unserialize($string_type_array), $array);
    var_dump($array);
Posted by: Guest on December-02-2021
0

string to array php

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

php convert string to array

foreach ($objects as $obj){
      echo $obj->user->description;
}
Posted by: Guest on April-23-2020

Browse Popular Code Answers by Language