convert string to array php code example
Example 1: integer to string php
return strval($integer);
Example 2: string to array in php
print_r(explode(',',$yourstring));
Example 3: php split string
<?php
$pizza = "piece1 piece2 piece3 piece4 piece5 piece6";
$pieces = explode(" ", $pizza);
echo $pieces[0];
echo $pieces[1];
Example 4: php convert string to chars
<?php
$str = "Hello Friend";
$arr1 = str_split($str);
$arr2 = str_split($str, 3);
print_r($arr1);
print_r($arr2);
?>
Example 5: php split string
explode(" ","Geeks for Geeks")