PHP - Condense long text and append ...

home ~ tools ~ song quotes ~ podcast ~ song lyric trivia ~ docs ~ links ~ archives ~ search ~ lycii ~ mail
internetbumperstickers.com
Example:

This is info from sql"

Now display only 15 characters like this:

This is info fr...


$string = "This is info from sql";

$string = strlen($string) > 15
        ? substr($string, 0, 15) . "..."
        : $string;

echo $string;