Q:

PHP | Convert a string to character array

belongs to collection: PHP String Programs

0

Given a string and we have to convert it into a character array.

Example:

    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
    )

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

PHP code to convert string to the character array

<?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
)

Explanation:

We use the PHP str_split() function to split individual characters from a string into a character array. The string ($input) is split into individual characters and stored into ($output) and then printed as an array using the print_r() function.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

PHP | Count the total number of words in a string... >>
<< PHP | Create comma delimited string from an array ...