explode将字符串转为数组

  
  
  
  
  1. $str = '111,222'
  2. $str = explode(','$str); 
  3. print_r($str); 
  4. Array 
  5.     [0] => 111
  6.     [1] => 222

 

你可能感兴趣的:(字符串)