echo substr('hello world', 0, 5); //hello
$string = (strlen($string) > 13) ? substr($string,0,10).'...' : $string;