<?php

	$str = "2,1";

	$str = array_map(function($value){
		return intval($value);
	}, explode(",", $str));


	var_dump($str);