$a = "1\t2\t3\t4\t5";
$b = explode("\t", $a);

foreach($b as $value){
echo $value;
}