Saturday, May 21, 2022

How to trim the explode string in PHP



$string = 'ABC, DEF, GHI';

$expl = array_map('trim', explode(',', $string));

No comments:

Post a Comment