


Introduction to the specific method of intercepting UTF-8 strings with PHP_PHP tutorial
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>=”; </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; //小写字母和半角标点等与半个高位字符宽… </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>
The above is a summary of the relevant methods of intercepting UTF-8 strings in PHP. I hope it will be helpful to everyone.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

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

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

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

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

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

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