Hey i am passing a string to an array and using the str_split.
$string = "Green"; $array = str_split($string,1); print_r($array); ?>
what i want to do is split the string to individual characters but not store the character , i would like to convert each individual character to its respective ascii value. Then add +10 to the ascii value.