Not to sure what you mean about displaying a link but to 'trim' text you could use substr_replace() like below:
$test="This is a test string with nothing really happening";
echo substr_replace($test,"...",15)."<br />";//echo 15 chars then add ...
//or
echo substr_replace($test,"",15)."<br />";cut off string at 15 characters