首頁 > 後端開發 > php教程 > photoshop cs2 v9.0 綠色中文版 PHP在字元斷點處截斷文字的實作程式碼

photoshop cs2 v9.0 綠色中文版 PHP在字元斷點處截斷文字的實作程式碼

WBOY
發布: 2016-07-29 08:44:49
原創
1034 人瀏覽過

複製程式碼 程式碼如下:


//所謂斷字(word break),也就是一個單字可在轉行時斷開的地方。這一函數將在斷字處截斷字串。
// Please acknowledge use of this code by including this header.
function myTruncate($string, $limit, $break=".", $pad="...") {
// return with no change if string is shorter than $limit
if(strlen($string) return $string;
// is $break present between $limit and the end of the string?
if(false !== ($breakpoint = strpos($string, $break, $limit))) {
if($breakpoint $ string = substr($string, 0, $breakpoint) . $pad;
}
}
return $string;
}
/***** 例 ****/
$ short_string=myTruncate($long_string, 100, ' ');

以上就介紹了photoshop cs2 v9.0 綠色中文版 PHP在字符斷點處截斷文字的實現代碼,包括了photoshop cs2 v9.0 綠色中文版方面的內容,希望對PHP教程有興趣的朋友有所幫助。

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板