Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The method of intercepting and replacing php according to the number of words

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly explains the method of interception and replacement of php by the number of words. The content of the explanation in the article is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn the method of interception and replacement of php according to the number of words.

Operating environment of this article: Windows7 system, PHP7.1 version, Dell G3 computer

How does php intercept and replace by number of words?

PHP intercepts a string of specified length, and the excess part uses.. Replace

Function substr_format ($text, $length, $replace='..', $encoding='UTF-8') {if ($text & & mb_strlen ($text, $encoding) > $length) {return mb_substr ($text, 0, $length, $encoding). $replace;} return $text;}

And

Function cut_string ($str, $len) {/ / check length if (mb_strwidth ($str, 'UTF-8') 127? 2: 1 * if ($tlen + $chrLen > $len) break;$tstr. = $chr;$tlen + = $chrLen;$i + +;} if ($tstr! = $str) {$tstr. ='...';} return $tstr } Thank you for your reading. the above is the content of "php intercept and replace by word". After the study of this article, I believe you have a deeper understanding of the method of intercept and replacement of php by word, and the specific use still needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report