PHP Program to convert string to the character array

bookmark

<?php
//PHP code to convert string to the 
//character array

//input string
$input = "WubbalubbaDubDub";

//converting string to character array
//using str_split()
$output = str_split($input);

//printing the types
echo "type of input : " .gettype($input) ."<br/>";
echo "type of output: " .gettype($output) ."<br/>";

//printing the result
echo "input: " .$input ."<br/>";
echo "output: " ."<br/>";
print_r($output);
?>


Output


type of input : string
type of output: array
input: WubbalubbaDubDub
output:
Array
(
    [0] => W
    [1] => u
    [2] => b
    [3] => b
    [4] => a
    [5] => l
    [6] => u
    [7] => b
    [8] => b
    [9] => a
    [10] => D
    [11] => u
    [12] => b
    [13] => D
    [14] => u
    [15] => b
)