How to explode substr - PHP Captcha

456 Views Asked by At

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);
2

There are 2 best solutions below

3
On BEST ANSWER

Use str_split()

var_dump(str_split('testing'));

Would return:

array (size=7)
  0 => string 't' (length=1)
  1 => string 'e' (length=1)
  2 => string 's' (length=1)
  3 => string 't' (length=1)
  4 => string 'i' (length=1)
  5 => string 'n' (length=1)
  6 => string 'g' (length=1)
0
On

Why not use simple for-loop here

$authorizedChar= "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
$nbChar = rand(4, 8);
$text = substr(str_shuffle($authorizedChar), 0, $nbChar);
for($i=0; $i<strlen($text); $i++)
  echo $text[$i]."<br />";