fork download
  1. <?php
  2.  
  3. $category_id = '17,18,20,21,22';
  4. $cat_ids = array_map('intval', explode(',',$category_id));
  5.  
  6. var_dump($cat_ids);
Success #stdin #stdout 0s 82560KB
stdin
Standard input is empty
stdout
array(5) {
  [0]=>
  int(17)
  [1]=>
  int(18)
  [2]=>
  int(20)
  [3]=>
  int(21)
  [4]=>
  int(22)
}