本文整理汇总了PHP中XUtils::_checkHtmlContent方法的典型用法代码示例。如果您正苦于以下问题:PHP XUtils::_checkHtmlContent方法的具体用法?PHP XUtils::_checkHtmlContent怎么用?PHP XUtils::_checkHtmlContent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类XUtils
的用法示例。
在下文中一共展示了XUtils::_checkHtmlContent方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: cutHtmlContent
/**
*
* html内容分页
* @param $content html内容
* @param $number 每页的字符数
*/
public static function cutHtmlContent($content, $number)
{
$result = array();
// $content = str_replace(array('<div>','</div>'), '', $content);
$totalWords = mb_strlen($content, 'utf8');
//总字数 中文3个,英文1个
if ($totalWords < 0 || $number < 0) {
return $result;
}
$start = 0;
while ($start < $totalWords) {
$strl = XUtils::_checkHtmlContent($content, $start, $number);
$result[] = $strl;
$start += mb_strlen($strl, 'utf8');
}
return $result;
}