I need your help to explode a substr function. It's for a captcha, need to have every character separate, to apply different color on each character.
Thank you.
$authorizedChar= "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
$nbChar = rand(4, 8);
$text = substr(str_shuffle($authorizedChar), 0, $nbChar);
Use
str_split()
Would return: