Code:
<?php
$input = "This is a test of the emergency broadcast system. This is only a test. If this were a real emergency, you'd likely be dead";
$length = 100;
$output = strlen($input) > $length ? substr($input, 0, strpos(wordwrap($input, $length), "\n"))."..." : $input;
echo $output;