Hello,
mails are separated by commas, some have spaces but some don’t
How can I fix this problem
$str = ‘mail,mail,mail, mail, mail, mail, mail’;
print_r (explode(", ",$str));
Output:
Array ( [0] => mail,mail,mail [1] => mail [2] => mail [3] => mail [4] => mail )