Thinkphp method to intercept Chinese string_PHP tutorial

WBOY
Release: 2016-07-13 10:31:15
Original
990 people have browsed it

ThinkPHP 3.1.3 seems to have no built-in method to intercept Chinese strings. I searched for a long time and couldn’t find it. Below, the author has added a function to intercept Chinese strings. The specific code is as follows. Friends in need can refer to it. Down.

The following code is added to the common.php file in the Common directory of the directory where the project is located. For example, the author's is the www/Common/common.php file. Of course, you can also add it directly to the Common/common.php file of thinkphp. inside so that all items are available.

function truncate_cn($string,$length=0,$ellipsis='…',$start=0){
	$string=strip_tags($string);
	$string=preg_replace('/\n/is','',$string);
	//$string=preg_replace('/ | /is','',$string);//清除字符串中的空格
	$string=preg_replace('/ /is','',$string);
	preg_match_all("/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|\xe0[\xa0-\xbf][\x80-\xbf]|[\xe1-\xef][\x80-\xbf][\x80-\xbf]|\xf0[\x90-\xbf][\x80-\xbf][\x80-\xbf]|[\xf1-\xf7][\x80-\xbf][\x80-\xbf][\x80-\xbf]/",$string,$string);
	if(is_array($string)&&!empty($string[0])){
		$string=implode('',$string[0]);
		if(strlen($string)<$start+1){
			return '';
		}
		preg_match_all("/./su",$string,$ar);
		$string2='';
		$tstr='';
		//www.phpernote.com
		for($i=0;isset($ar[0][$i]);$i++){
			if(strlen($tstr)<$start){
				$tstr.=$ar[0][$i];
			}else{
				if(strlen($string2)<$length+strlen($ar[0][$i])){
					$string2.=$ar[0][$i];
				}else{
					break;
				}
			}
		}
		return $string==$string2?$string2:$string2.$ellipsis;
	}else{
		$string='';
	}
	return $string;
}
Copy after login

is used in thinkphp templates as follows:

{$info.subject|truncate_cn=40,'',0}
Copy after login

means to intercept the $info['subject'] string. Starting from the 0th string, intercept the string with a length of 40. If the length of the intercepted string is less than the length of the original string, nothing will be displayed. The default is..., in fact, the last two parameters are optional.

Articles you may be interested in

  • Summary of the JavaScript string interception function (including an introduction to using Js to intercept Chinese characters)
  • thinkphp template Determine the last record of the volist loop
  • PHP performance optimization: using isset() to determine the string length is faster than strlen()
  • js limit can only enter English letters and numbers, not input Solutions for Chinese and other special characters
  • Thinkphp automatic verification and autofill invalid solutions
  • php extracts numbers in strings
  • How to remove the website url developed by codeIgniter The index.php string
  • php determines whether the string is all in English, pure Chinese, and a combination of Chinese and English

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/764109.htmlTechArticleThinkPHP 3.1.3 seems to have no built-in method of intercepting Chinese strings. I searched for a long time and couldn’t find it. The author below Added a function to intercept Chinese strings, the specific code is as follows, if necessary...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!