$string = subtr($your_string, 0, 30); // 0 where you start to remove // 30 where you stop remove
$words = "Hello Coders ! vote on grepper"; $output = substr($words, 0, 10);