The difference between mb_ series functions and ordinary character functions
Dec 05, 2016 pm 01:26 PMThe
mb function is a function extension that processes text according to the encoding format.
Modify the /etc/php.ini configuration file and add extension=php_mbstring.so
Let’s use my most commonly used substr function as an example. It's clear at a glance.
Example:
<span style="color: #008080"> 1</span> <?<span style="color: #000000">php </span><span style="color: #008080"> 2</span> <span style="color: #008000">//</span><span style="color: #008000">phpinfo();</span> <span style="color: #008080"> 3</span> <span style="color: #800080">$str</span> = 'abcdef'<span style="color: #000000">; </span><span style="color: #008080"> 4</span> <span style="color: #0000ff">echo</span> <span style="color: #008080">strlen</span>(<span style="color: #800080">$str</span>);<span style="color: #008000">//</span><span style="color: #008000"> 6</span> <span style="color: #008080"> 5</span> <span style="color: #0000ff">echo</span> '<br/>'<span style="color: #000000">; </span><span style="color: #008080"> 6</span> <span style="color: #0000ff">echo</span> <span style="color: #008080">substr</span>(<span style="color: #800080">$str</span>, 1,2);<span style="color: #008000">//</span><span style="color: #008000"> bc</span> <span style="color: #008080"> 7</span> <span style="color: #0000ff">echo</span> '<br/>'<span style="color: #000000">; </span><span style="color: #008080"> 8</span> <span style="color: #008080"> 9</span> <span style="color: #800080">$str2</span> = '我是誰ab'<span style="color: #000000">; </span><span style="color: #008080">10</span> <span style="color: #0000ff">echo</span> <span style="color: #008080">substr</span>(<span style="color: #800080">$str2</span>, 2, 2);<span style="color: #008000">//</span><span style="color: #008000"> ??</span> <span style="color: #008080">11</span> <span style="color: #0000ff">echo</span> '<br/>'<span style="color: #000000">; </span><span style="color: #008080">12</span> <span style="color: #0000ff">echo</span> mb_substr(<span style="color: #800080">$str2</span>, 2, 2, 'UTF-8');<span style="color: #008000">//</span><span style="color: #008000"> 誰a</span> <span style="color: #008080">13</span> <span style="color: #0000ff">echo</span> '<br/>'<span style="color: #000000">; </span><span style="color: #008080">14</span> <span style="color: #0000ff">echo</span> <span style="color: #008080">strlen</span>(<span style="color: #800080">$str2</span>);<span style="color: #008000">//</span><span style="color: #008000"> 11</span> <span style="color: #008080">15</span> <span style="color: #0000ff">echo</span> '<br/>'<span style="color: #000000">; </span><span style="color: #008080">16</span> <span style="color: #0000ff">echo</span> mb_strlen(<span style="color: #800080">$str2</span>, 'UTF-8');<span style="color: #008000">//</span><span style="color: #008000"> 5</span> <span style="color: #008080">17</span> <span style="color: #0000ff">echo</span> '<br/>';
Look at lines 10 and 12, the effect is clear.
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

Undress AI Tool
Undress images for free

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

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

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article
Guide: Stellar Blade Save File Location/Save File Lost/Not Saving
3 weeks ago
By DDD
Oguri Cap Build Guide | A Pretty Derby Musume
2 weeks ago
By Jack chen
Agnes Tachyon Build Guide | A Pretty Derby Musume
1 weeks ago
By Jack chen
Dune: Awakening - Advanced Planetologist Quest Walkthrough
3 weeks ago
By Jack chen
Date Everything: Dirk And Harper Relationship Guide
3 weeks ago
By Jack chen

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)
