制作一个正确的HTML摘要
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了制作一个正确的HTML摘要相关的知识,希望对你有一定的参考价值。
// makeTeaser: makes a teaser for the number of words specified function makeTeaser($text, $numWords) { $words = split(' ', $text); $words = array_chunk($words, $numWords); $output = implode(' ', $words[0]); $output = strip_tags($output) . '...'; return $output; }
以上是关于制作一个正确的HTML摘要的主要内容,如果未能解决你的问题,请参考以下文章