Home Backend Development PHP Tutorial Introduction to the specific method of intercepting UTF-8 strings with PHP_PHP tutorial

Introduction to the specific method of intercepting UTF-8 strings with PHP_PHP tutorial

Jul 15, 2016 pm 01:30 PM
faq php utf-8 introduce about specific principle string right us intercept method of

We For the principle of utf-8, please see UTF-8 FAQ

UTF-8 encoded characters may consist of 1~3 bytes, the specific number It can be judged from the first byte. (Theoretically it may be longer, but here it is assumed that it does not exceed 3 bytes)
The first byte is greater than 224, it and the 2 bytes after it form a UTF-8 character
The first If a byte is greater than 192 and less than 224, it and the 1 byte after it form a UTF-8 character
. Otherwise, the first byte itself is an English character (including numbers and a small part of punctuation marks).

Code previously designed for a website (also the length interception function now used on the homepage)

Code example for PHP interception of utf-8 strings:

<ol class="dp-xml">
<li class="alt"><span><span class="tag"><</span><span> ?php // Cut_Str;  </span></span></li><li><span>//$sourcestr 是要处理的字符串  </span></li><li class="alt"><span>//$cutlength 为截取的长度(即字数)  </span></li><li><span>function cut_str($sourcestr,$cutlength)  </span></li><li class="alt"><span>{  </span></li><li><span>$</span><span class="attribute">returnstr</span><span>=&rdquo;;  </span></li><li class="alt"><span>$</span><span class="attribute">i</span><span>=</span><span class="attribute-value">0</span><span>;  </span></li><li><span>$</span><span class="attribute">n</span><span>=</span><span class="attribute-value">0</span><span>;  </span></li><li class="alt"><span>$</span><span class="attribute">str_length</span><span>=</span><span class="attribute-value">strlen</span><span>($sourcestr);//字符串的字节数  </span></li><li><span>while (($n</span><span class="tag"><</span><span>$cutlength) and ($i</span><span class="tag"><</span><span>=$str_length))  </span></li><li class="alt"><span>{  </span></li><li><span>$</span><span class="attribute">temp_str</span><span>=</span><span class="attribute-value">substr</span><span>($sourcestr,$i,1);  </span></li><li class="alt"><span>$</span><span class="attribute">ascnum</span><span>=</span><span class="attribute-value">Ord</span><span>($temp_str);//得到字符串中第$i位字符的ascii码  </span></li><li><span>if ($ascnum</span><span class="tag">></span><span>=224) //如果ASCII位高与224,  </span></span></li>
<li class="alt"><span>{  </span></li>
<li>
<span>$</span><span class="attribute">returnstr</span><span>=$returnstr.substr($sourcestr,$i,3); <br>//根据UTF-8编码规范,将3个连续的字符计为单个字符  </span>
</li>
<li class="alt">
<span>$</span><span class="attribute">i</span><span>=$i+3; //实际Byte计为3  </span>
</li>
<li><span>$n++; //字串长度计1  </span></li>
<li class="alt"><span>}  </span></li>
<li>
<span>elseif ($ascnum</span><span class="tag">></span><span>=192) //如果ASCII位高与192,  </span>
</li>
<li class="alt"><span>{  </span></li>
<li>
<span>$</span><span class="attribute">returnstr</span><span>=$returnstr.substr($sourcestr,$i,2);<br> //根据UTF-8编码规范,将2个连续的字符计为单个字符  </span>
</li>
<li class="alt">
<span>$</span><span class="attribute">i</span><span>=$i+2; //实际Byte计为2  </span>
</li>
<li><span>$n++; //字串长度计1  </span></li>
<li class="alt"><span>}  </span></li>
<li>
<span>elseif ($ascnum</span><span class="tag">></span><span>=65 && $ascnum</span><span class="tag"><</span><span>=90) <br />//如果是大写字母,  </span></li><li class="alt"><span>{  </span></li><li><span>$</span><span class="attribute">returnstr</span><span>=$returnstr.substr($sourcestr,$i,1);  </span></li><li class="alt"><span>$</span><span class="attribute">i</span><span>=$i+1; //实际的Byte数仍计1个  </span></li><li><span>$n++; //但考虑整体美观,大写字母计成一个高位字符  </span></li><li class="alt"><span>}  </span></li><li><span>else //其他情况下,包括小写字母和半角标点符号,  </span></li><li class="alt"><span>{  </span></li><li><span>$</span><span class="attribute">returnstr</span><span>=$returnstr.substr($sourcestr,$i,1);  </span></li><li class="alt"><span>$</span><span class="attribute">i</span><span>=$i+1; //实际的Byte数计1个  </span></li><li><span>$</span><span class="attribute">n</span><span>=$n+0.5; //小写字母和半角标点等与半个高位字符宽&hellip;  </span></li><li class="alt"><span>}  </span></li><li><span>}  </span></li><li class="alt"><span>if ($str_length</span><span class="tag">></span><span>$cutlength){  </span>
</li>
<li>
<span>$</span><span class="attribute">returnstr</span><span> = $returnstr . “…”;<br>//超过长度时在尾处加上省略号  </span>
</li>
<li class="alt"><span>}  </span></li>
<li><span>return $returnstr;  </span></li>
<li class="alt"><span>} </span></li>
</ol>
Copy after login

The above is a summary of the relevant methods of intercepting UTF-8 strings in PHP. I hope it will be helpful to everyone.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/446272.htmlTechArticleFor our explanation of the principles of utf-8, please see UTF-8 FAQ UTF-8 encoded characters may be from 1~ It consists of 3 bytes. The specific number can be judged from the first byte. (Theoretically it could be longer, but here...
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 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months 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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles