<?php$string='984,984,984 tryrt';$result=join(',', array_unique(preg_split('/[\s,]+/', $string)));echo $result;// выводит 984 tryrt?>