meledakkan php semua nilai ke int

$s = "1,2,3,8,2";
$ints = array_map('intval', explode(',', $s ));
var_dump( $ints );
Outstanding Ocelot