“string php encurtar com pontos” Respostas de código

string de acabamento php se mais que

substr($str,0,50);
Friendly Hawk

string php encurtar com pontos

function preview($text)
// we don't want new lines in our preview
$text_only_spaces = preg_replace('/\s+/', ' ', $text);
// truncates the text
$text_truncated = mb_substr($text_only_spaces, 0, mb_strpos($text_only_spaces, " ", 50));
// prevents last word truncation
$preview = trim(mb_substr($text_truncated, 0, mb_strrpos($text_truncated, " ")));
$preview."...";
}
Exuberant Eland

Respostas semelhantes a “string php encurtar com pontos”

Perguntas semelhantes a “string php encurtar com pontos”

Mais respostas relacionadas para “string php encurtar com pontos” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código