“Wortgrenze in PHP” Code-Antworten

PHP begrenzt Wörter

function limit_text($text, $limit) {
    if (str_word_count($text, 0) > $limit) {
        $words = str_word_count($text, 2);
        $pos   = array_keys($words);
        $text  = substr($text, 0, $pos[$limit]) . '...';
    }
    return $text;
}

echo limit_text('Hello here is a long sentence that will be truncated by the', 5);
Difficult Dormouse

Wortgrenze in PHP

echo str_word_count("word count function");
Black Bat

Ähnliche Antworten wie “Wortgrenze in PHP”

Fragen ähnlich wie “Wortgrenze in PHP”

Weitere verwandte Antworten zu “Wortgrenze in PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen