Home php教程 php手册 The difference between mb_ series functions and ordinary character functions

The difference between mb_ series functions and ordinary character functions

Dec 05, 2016 pm 01:26 PM

The

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/>';
Copy after login

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

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

Video Face Swap

Video Face Swap

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

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)