t.php 231 B

12345678
  1. <?php
  2. $str = ',1, 2, 3, 4 5';
  3. //$str=preg_replace('/([\s]*)|(,)/i',',',trim($str));
  4. //$str=preg_replace('/[,]{2,}/i',',',$str);
  5. //$str = trim($str,',');
  6. $str=preg_split('/[,, ]+/is', $str);
  7. var_dump($str);