php 剪切文字
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 剪切文字相关的知识,希望对你有一定的参考价值。
function cutText($text, $num = 20)
{
$text = trim(strip_tags($text));
if ($text) {
$arr_text = explode(" ", $text);
$arr_text_new = array();
if (count($arr_text) > $num) {
for ($i=0; $i < $num; $i++) {
$arr_text_new[$i] = $arr_text[$i];
}
$text = implode(" ", $arr_text_new);
}
}
return $text;
}
以上是关于php 剪切文字的主要内容,如果未能解决你的问题,请参考以下文章
按键精灵怎么判断剪切板里面的多个文字?
ios复制文字到剪切板
Python:截取图片后识别文字输出至剪切板
手机复制粘贴不了怎么办
JavaScript如何点击实现复制文字到剪切板呢?
mac 剪切文件