Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the method of converting php emoji to text?

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

The main content of this article is to explain "what is the method of converting php emoji into text". Interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Next, let the editor take you to learn "what is the method of converting php emoji into text"?

Php emoji to text methods: 1, to create a PHP example file; 2, through the "function utf16_to_entities () {...}" method to convert emoji emoji into HTML character entities can be saved.

This article operating environment: Windows7 system, PHP7.1 version, DELL G3 computer

How to convert php emoji to text?

PHP converts emoji emoticons to HTML character entities:

Mobile input allows you to input facial expressions, which are actually encoded by UTF-16, which will be lost in the database storage. Currently, if the database code code is changed to utf8mb4, it can also be saved.

If you do not want to modify others, you can convert these emoticons into HTML character entities and save them.

The code is as follows:

Function utf16_to_entities () {$content = mb_convert_encoding ($content, 'utf-16'); $bin = bin2hex ($content); $arr = str_split ($bin, 4); $l = count ($arr); $str =''; for ($n = 0; $n

< $l; $n++) { if (isset($arr[$n + 1]) && ('0x' . $arr[$n] >

= 0xd800 & & '0x'. $arr [$n] = 0xdc00 & & '0x'. $arr [$n + 1]

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report