需要一些 php 函数来删除斜杠
我原来的字符串看起来像这样。
25\\\" height x 12\\\" width x 9\\\
但我想从刺痛中删除这些斜线,如下文所示。
我使用了 stripslashes 函数,但只给出了 25 。
25 英寸高 x 12 英寸宽 x 9
My original string look like this .
25\\\" height x 12\\\" width x 9\\\
but i want to remove these slashes from the sting like the below text.
I used stripslashes function , but gives only 25 .
25" height x 12" width x 9
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你听起来像是添加了双斜杠。这是测试几种不同情况的快速代码块。在 3/4 的 var_dumps 中,它正确打印了数据。额外的斜杠是为了转义字符串编码。希望如果您使用下面的代码,它将有助于找出字符串中的问题。
You make it sound like you have double slashes added. Here is a quick block of code that tests a few different cases. And in 3/4 of the var_dumps it prints the data correctly. The extra slashes are to escape string encoding. Hopefully if you play around with the code below, it will help figure out the problem in your string.
StripSlashes
适合此或 str_replace
StripSlashes
Good for this or str_replace
您还可以像这样使用 str_replace
You can also use str_replace like this
请使用 stripslashes 函数。我使用并得到以下结果:
echo stripslashes ('25\\" height x 12\\" width x 9\\');
输出:25英寸高 x 12英寸宽 x 9
Please used stripslashes function. I used and i got the following result:
echo stripslashes ('25\\" height x 12\\" width x 9\\');
output: 25" height x 12" width x 9