加入收藏 | 设为首页 | 会员中心 | 我要投稿 安卓应用网 (https://www.0791zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > PHP > 正文

php 不破坏单词截取字符串的简单示例

发布时间:2020-05-25 04:59:18 所属栏目:PHP 来源:互联网
导读:php 不破坏单词截取字符串的简单示例

感兴趣的小伙伴,下面一起跟随脚本之家 jb51.cc的小编来看看吧。
经测试代码如下:

<?php
/**
 * 截取字符串
 *
 * @param 
 * @arrange (512.笔记) jb51.cc
 * snippet(phrase,[max length],[phrase tail])
 * snippetgreedy(phrase,[max length before next space],[phrase tail])
 **/
function snippet($text,$length=64,$tail="...") {
$text = trim($text);
$txtl = strlen($text);
if($txtl > $length) {
for($i=1;$text[$length-$i]!=" ";$i++) {
if($i == $length) {
return substr($text,$length) . $tail;
}
}
$text = substr($text,$length-$i+1) . $tail;
}
return $text;
}

// It behaves greedy,gets length characters ore goes for more

function snippetgreedy($text,$tail="...") {
$text = trim($text);
if(strlen($text) > $length) {
for($i=0;$text[$length+$i]!=" ";$i++) {
if(!$text[$length+$i]) {
return $text;
}
}
$text = substr($text,$length+$i) . $tail;
}
return $text;
}

// The same as the snippet but removing latest low punctuation chars,// if they exist (dots and commas). It performs a later suffixal trim of spaces

function snippetwop($text,$length) . $tail;
}
}
for(;$text[$length-$i]=="," || $text[$length-$i]=="." || $text[$length-$i]==" ";$i++) {;}
$text = substr($text,$length-$i+1) . $tail;
}
return $text;
}

/*
echo(snippet("this is not too long to run on the column on the left,perhaps,or perhaps yes,no idea") . "<br>");
echo(snippetwop("this is not too long to run on the column on the left,no idea") . "<br>");
echo(snippetgreedy("this is not too long to run on the column on the left,no idea"));
*/


/*** 来自:脚本之家 jb51.cc(jb51.cc) ***/ 
?>

(编辑:安卓应用网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读