function add3dots($string, $repl, $limit){ if(strlen($string) > $limit){ return substr($string, 0, $limit) . $repl; }else{ return $string; } }