📜  php 前 20 个单词 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:31.195000             🧑  作者: Mango

代码示例1
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);