Home Backend Development PHP Tutorial ThinkPHP+Smarty模板中截取包含中英文混同的字符串乱码的解决方案

ThinkPHP+Smarty模板中截取包含中英文混同的字符串乱码的解决方案

Jun 13, 2016 pm 12:29 PM
bytes length return string

ThinkPHP+Smarty模板中截取包含中英文混合的字符串乱码的解决方案

好几天没写博客了,其实有好多需要总结的,因为最近一直在忙着做项目,但是困惑了几天的Smarty模板中截取包含中英文混合的字符串乱码的问题,终于解决了,所以记录下来,需要的朋友看一下:

出现乱码的原因:

对于字符串的截取,truncate函数只适合英文用户,对与中文用户来说,使用 truncate会出现乱码,而且对于中文英文混合串来说,截取同样个数的字符串,实际显示长度上却不同,一个中文的长度大致相当于两个英文的长度。此外,truncate不能同时兼容GB2312、UTF-8等编码。

解决方法:自己写一个扩展类使用

ThinkPHP使用的smarty的truncate变量调节器所在的类文件位置:ThinkPHP\Library\Vendor\Smarty\plugins,其中有一个就是modifier.truncate.php,我们不用这个,我们自己写一个来实现

文件名:modifier.smartTruncate.php

 

<span style="color: #000000;">php</span><span style="color: #008000;">/*</span><span style="color: #008000;">* * 中英文多编码字符串截取</span><span style="color: #008000;">*/</span><span style="color: #0000ff;">function</span> smartDetectUTF8(<span style="color: #800080;">$string</span><span style="color: #000000;">){    </span><span style="color: #0000ff;">static</span> <span style="color: #800080;">$result</span> = <span style="color: #0000ff;">array</span><span style="color: #000000;">();    </span><span style="color: #0000ff;">if</span>(! <span style="color: #008080;">array_key_exists</span>(<span style="color: #800080;">$key</span> = <span style="color: #008080;">md5</span>(<span style="color: #800080;">$string</span>), <span style="color: #800080;">$result</span><span style="color: #000000;">))    {        </span><span style="color: #800080;">$utf8</span> = "<span style="color: #000000;">            /^(?:                [\x09\x0A\x0D\x20-\x7E]                            # ASCII                | [\xC2-\xDF][\x80-\xBF]                             # non-overlong 2-byte                | \xE0[\xA0-\xBF][\x80-\xBF]                       # excluding overlongs                | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2}           # straight 3-byte                | \xED[\x80-\x9F][\x80-\xBF]                      # excluding surrogates                | \xF0[\x90-\xBF][\x80-\xBF]{2}                 # planes 1-3                | [\xF1-\xF3][\x80-\xBF]{3}                          # planes 4-15                | \xF4[\x80-\x8F][\x80-\xBF]{2}                  # plane 16            )+$/xs        </span>"<span style="color: #000000;">;        </span><span style="color: #800080;">$result</span>[<span style="color: #800080;">$key</span>] = <span style="color: #008080;">preg_match</span>(<span style="color: #008080;">trim</span>(<span style="color: #800080;">$utf8</span>), <span style="color: #800080;">$string</span><span style="color: #000000;">);    }    </span><span style="color: #0000ff;">return</span> <span style="color: #800080;">$result</span>[<span style="color: #800080;">$key</span><span style="color: #000000;">];}</span><span style="color: #0000ff;">function</span> smartStrlen(<span style="color: #800080;">$string</span><span style="color: #000000;">){    </span><span style="color: #800080;">$result</span> = 0<span style="color: #000000;">;    </span><span style="color: #800080;">$number</span> = smartDetectUTF8(<span style="color: #800080;">$string</span>) ? 3 : 2<span style="color: #000000;">;    </span><span style="color: #0000ff;">for</span>(<span style="color: #800080;">$i</span> = 0; <span style="color: #800080;">$i</span> strlen(<span style="color: #800080;">$string</span>); <span style="color: #800080;">$i</span> += <span style="color: #800080;">$bytes</span><span style="color: #000000;">)    {        </span><span style="color: #800080;">$bytes</span> = <span style="color: #008080;">ord</span>(<span style="color: #008080;">substr</span>(<span style="color: #800080;">$string</span>, <span style="color: #800080;">$i</span>, 1)) > 127 ? <span style="color: #800080;">$number</span> : 1<span style="color: #000000;">;        </span><span style="color: #800080;">$result</span> += <span style="color: #800080;">$bytes</span> > 1 ? 1.0 : 0.5<span style="color: #000000;">;    }    </span><span style="color: #0000ff;">return</span> <span style="color: #800080;">$result</span><span style="color: #000000;">;}</span><span style="color: #0000ff;">function</span> smartSubstr(<span style="color: #800080;">$string</span>, <span style="color: #800080;">$start</span>, <span style="color: #800080;">$length</span> = <span style="color: #0000ff;">null</span><span style="color: #000000;">){    </span><span style="color: #800080;">$result</span> = ''<span style="color: #000000;">;    </span><span style="color: #800080;">$number</span> = smartDetectUTF8(<span style="color: #800080;">$string</span>) ? 3 : 2<span style="color: #000000;">;    </span><span style="color: #0000ff;">if</span>(<span style="color: #800080;">$start</span> )    {        <span style="color: #800080;">$start</span> = <span style="color: #008080;">max</span>(smartStrlen(<span style="color: #800080;">$string</span>) + <span style="color: #800080;">$start</span>, 0<span style="color: #000000;">);    }    </span><span style="color: #0000ff;">for</span>(<span style="color: #800080;">$i</span> = 0; <span style="color: #800080;">$i</span> strlen(<span style="color: #800080;">$string</span>); <span style="color: #800080;">$i</span> += <span style="color: #800080;">$bytes</span><span style="color: #000000;">)    {        </span><span style="color: #0000ff;">if</span>(<span style="color: #800080;">$start</span> )        {            <span style="color: #0000ff;">break</span><span style="color: #000000;">;        }        </span><span style="color: #800080;">$bytes</span> = <span style="color: #008080;">ord</span>(<span style="color: #008080;">substr</span>(<span style="color: #800080;">$string</span>, <span style="color: #800080;">$i</span>, 1)) > 127 ? <span style="color: #800080;">$number</span> : 1<span style="color: #000000;">;        </span><span style="color: #800080;">$start</span> -= <span style="color: #800080;">$bytes</span> > 1 ? 1.0 : 0.5<span style="color: #000000;">;    }    </span><span style="color: #0000ff;">if</span>(<span style="color: #008080;">is_null</span>(<span style="color: #800080;">$length</span><span style="color: #000000;">))    {        </span><span style="color: #800080;">$result</span> = <span style="color: #008080;">substr</span>(<span style="color: #800080;">$string</span>, <span style="color: #800080;">$i</span><span style="color: #000000;">);    }    </span><span style="color: #0000ff;">else</span><span style="color: #000000;">    {        </span><span style="color: #0000ff;">for</span>(<span style="color: #800080;">$j</span> = <span style="color: #800080;">$i</span>; <span style="color: #800080;">$j</span> strlen(<span style="color: #800080;">$string</span>); <span style="color: #800080;">$j</span> += <span style="color: #800080;">$bytes</span><span style="color: #000000;">)        {            </span><span style="color: #0000ff;">if</span>(<span style="color: #800080;">$length</span> )            {                <span style="color: #0000ff;">break</span><span style="color: #000000;">;            }            </span><span style="color: #0000ff;">if</span>((<span style="color: #800080;">$bytes</span> = <span style="color: #008080;">ord</span>(<span style="color: #008080;">substr</span>(<span style="color: #800080;">$string</span>, <span style="color: #800080;">$j</span>, 1)) > 127 ? <span style="color: #800080;">$number</span> : 1) > 1<span style="color: #000000;">)            {                </span><span style="color: #0000ff;">if</span>(<span style="color: #800080;">$length</span> )                {                    <span style="color: #0000ff;">break</span><span style="color: #000000;">;                }                </span><span style="color: #800080;">$result</span> .= <span style="color: #008080;">substr</span>(<span style="color: #800080;">$string</span>, <span style="color: #800080;">$j</span>, <span style="color: #800080;">$bytes</span><span style="color: #000000;">);                </span><span style="color: #800080;">$length</span> -= 1.0<span style="color: #000000;">;            }            </span><span style="color: #0000ff;">else</span><span style="color: #000000;">            {                </span><span style="color: #800080;">$result</span> .= <span style="color: #008080;">substr</span>(<span style="color: #800080;">$string</span>, <span style="color: #800080;">$j</span>, 1<span style="color: #000000;">);                </span><span style="color: #800080;">$length</span> -= 0.5<span style="color: #000000;">;            }        }    }    </span><span style="color: #0000ff;">return</span> <span style="color: #800080;">$result</span><span style="color: #000000;">;}</span><span style="color: #0000ff;">function</span> smarty_modifier_smartTruncate(<span style="color: #800080;">$string</span>, <span style="color: #800080;">$length</span> = 80, <span style="color: #800080;">$etc</span> = '...',<span style="color: #800080;">$break_words</span> = <span style="color: #0000ff;">false</span>, <span style="color: #800080;">$middle</span> = <span style="color: #0000ff;">false</span><span style="color: #000000;">){    </span><span style="color: #0000ff;">if</span> (<span style="color: #800080;">$length</span> == 0<span style="color: #000000;">)        </span><span style="color: #0000ff;">return</span> ''<span style="color: #000000;">;    </span><span style="color: #0000ff;">if</span> (smartStrlen(<span style="color: #800080;">$string</span>) > <span style="color: #800080;">$length</span><span style="color: #000000;">) {        </span><span style="color: #800080;">$length</span> -= smartStrlen(<span style="color: #800080;">$etc</span><span style="color: #000000;">);        </span><span style="color: #0000ff;">if</span> (!<span style="color: #800080;">$break_words</span> && !<span style="color: #800080;">$middle</span><span style="color: #000000;">) {            </span><span style="color: #800080;">$string</span> = <span style="color: #008080;">preg_replace</span>('/\s+?(\S+)?$/', '', smartSubstr(<span style="color: #800080;">$string</span>, 0, <span style="color: #800080;">$length</span>+1<span style="color: #000000;">));        }        </span><span style="color: #0000ff;">if</span>(!<span style="color: #800080;">$middle</span><span style="color: #000000;">) {            </span><span style="color: #0000ff;">return</span> smartSubstr(<span style="color: #800080;">$string</span>, 0, <span style="color: #800080;">$length</span>).<span style="color: #800080;">$etc</span><span style="color: #000000;">;        } </span><span style="color: #0000ff;">else</span><span style="color: #000000;"> {            </span><span style="color: #0000ff;">return</span> smartSubstr(<span style="color: #800080;">$string</span>, 0, <span style="color: #800080;">$length</span>/2) . <span style="color: #800080;">$etc</span> . smartSubstr(<span style="color: #800080;">$string</span>, -<span style="color: #800080;">$length</span>/2<span style="color: #000000;">);        }    } </span><span style="color: #0000ff;">else</span><span style="color: #000000;"> {        </span><span style="color: #0000ff;">return</span> <span style="color: #800080;">$string</span><span style="color: #000000;">;    }}</span>?>
Copy after login

 

注意:在判断字符长度时,一个中文字符算1.0,一个英文字符算0.5,截取子字符串时不会出现参差不齐的情况.

使用方法:

{<span style="color: #800080;">$content</span>|smartTruncate:5:"..."}
Copy after login

ok,测试没有问题有问欢迎指出

 

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Convert basic data types to strings using Java's String.valueOf() function Convert basic data types to strings using Java's String.valueOf() function Jul 24, 2023 pm 07:55 PM

Convert basic data types to strings using Java's String.valueOf() function In Java development, when we need to convert basic data types to strings, a common method is to use the valueOf() function of the String class. This function can accept parameters of basic data types and return the corresponding string representation. In this article, we will explore how to use the String.valueOf() function for basic data type conversions and provide some code examples to

Detailed explanation of the usage of return in C language Detailed explanation of the usage of return in C language Oct 07, 2023 am 10:58 AM

The usage of return in C language is: 1. For functions whose return value type is void, you can use the return statement to end the execution of the function early; 2. For functions whose return value type is not void, the function of the return statement is to end the execution of the function. The result is returned to the caller; 3. End the execution of the function early. Inside the function, we can use the return statement to end the execution of the function early, even if the function does not return a value.

How to convert char array to string How to convert char array to string Jun 09, 2023 am 10:04 AM

Method of converting char array to string: It can be achieved by assignment. Use {char a[]=" abc d\0efg ";string s=a;} syntax to let the char array directly assign a value to string, and execute the code to complete the conversion.

HWID V 2.2 manual activation methods and tutorials HWID V 2.2 manual activation methods and tutorials Oct 20, 2023 pm 07:17 PM

This is for users who want to perform manual activation. If you need help with a tool for you to do this, then check here. We can divide the manual activation process into two parts. 1- From the ready-made batch file make sure the internet is enabled. Open Windows Powershell as administrator and enter the following to list the commands in the order they are given. Enter the key, (replace with the key from the list above) Use the following command &lt;key&gt;slmgr/ipk&lt;key&gt; Download the universal ticket from here and extract the downloaded file. Now enter the following code in Powershell (Get-ItemProper

What is the execution order of return and finally statements in Java? What is the execution order of return and finally statements in Java? Apr 25, 2023 pm 07:55 PM

Source code: publicclassReturnFinallyDemo{publicstaticvoidmain(String[]args){System.out.println(case1());}publicstaticintcase1(){intx;try{x=1;returnx;}finally{x=3;}}}#Output The output of the above code can simply conclude: return is executed before finally. Let's take a look at what happens at the bytecode level. The following intercepts part of the bytecode of the case1 method, and compares the source code to annotate the meaning of each instruction in

2w words detailed explanation String, yyds 2w words detailed explanation String, yyds Aug 24, 2023 pm 03:56 PM

Hello everyone, today I will share with you the basic knowledge of Java: String. Needless to say the importance of the String class, it can be said to be the most used class in our back-end development, so it is necessary to talk about it.

Use Java's String.replace() function to replace characters (strings) in a string Use Java's String.replace() function to replace characters (strings) in a string Jul 25, 2023 pm 05:16 PM

Replace characters (strings) in a string using Java's String.replace() function In Java, strings are immutable objects, which means that once a string object is created, its value cannot be modified. However, you may encounter situations where you need to replace certain characters or strings in a string. At this time, we can use the replace() method in Java's String class to implement string replacement. The replace() method of String class has two types:

Use java's String.length() function to get the length of a string Use java's String.length() function to get the length of a string Jul 25, 2023 am 09:09 AM

Use Java's String.length() function to get the length of a string. In Java programming, string is a very common data type. We often need to get the length of a string, that is, the number of characters in the string. In Java, we can use the length() function of the String class to get the length of a string. Here is a simple example code: publicclassStringLengthExample{publ

See all articles