fork download
  1. <?php
  2.  
  3. $str = '1,4|a1,b4';
  4.  
  5. $out = call_user_func_array("array_combine", array_chunk(str_word_count($str, 1, '1234567890'), 2));
  6.  
  7. print_r( $out );
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
Array
(
    [1] => a1
    [4] => b4
)