str_split()

Codice PHP:
$stringa "2010";

$str str_split($stringa2);
print_r($str);

/*
Array
(
    [0] => 20
    [1] => 10
)
*/