$string = 'String of text that you want to shorten';

// Starts at the beginning of the string and ends after 100 characters
echo substr($string, 0, 100).'... <a href="page.php">Read More</a>';