2つの文字列を配列に変換するにはどうすればよいですか?たとえば、str1 = "12,32,3"; str2 = "0,2,1"; ----------- $result = array_combine(explode(',', $str1),explode(',', $str2));