Home >Backend Development >PHP Tutorial >对包含中文的字符串进行转义(进行字符串替换)的有关问题

对包含中文的字符串进行转义(进行字符串替换)的有关问题

WBOY
WBOYOriginal
2016-06-13 10:03:401135browse

对包含中文的字符串进行转义(进行字符串替换)的问题
比如,我想把字符串中的\转义(替换)为\\
但是字符串“燈籠”中没有\,只是“籠”的第二个字节和\的值相同,所以还是被换成了\\,这样显示出来是“燈籠\”了
请问这个问题怎么处理?

------解决方案--------------------
不是很清楚你的意思
试一下php 的代替函数 str_replace()
------解决方案--------------------
stripslashes 去掉斜杠的
本函数可去掉字符串中的反斜线字符。
若是连续二个反斜线,则去掉一个,留下一个。若只有一个反斜线,就直接去掉。

Statement:
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