需要一些 php 函数来删除斜杠

发布于 2024-11-09 06:27:29 字数 183 浏览 3 评论 0原文

我原来的字符串看起来像这样。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

寄离 2024-11-16 06:27:29

你听起来像是添加了双斜杠。这是测试几种不同情况的快速代码块。在 3/4 的 var_dumps 中,它正确打印了数据。额外的斜杠是为了转义字符串编码。希望如果您使用下面的代码,它将有助于找出字符串中的问题。

<?php

$s = "25\\\\\" height x 12\\\\\" width x 9\\\\";

var_dump(stripslashes($s));
var_dump(stripslashes(stripslashes($s)));

$s = "25\\\" height x 12\\\" width x 9\\";

var_dump(stripslashes($s));
var_dump(stripslashes(stripslashes($s)));

?>

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.

<?php

$s = "25\\\\\" height x 12\\\\\" width x 9\\\\";

var_dump(stripslashes($s));
var_dump(stripslashes(stripslashes($s)));

$s = "25\\\" height x 12\\\" width x 9\\";

var_dump(stripslashes($s));
var_dump(stripslashes(stripslashes($s)));

?>
神经暖 2024-11-16 06:27:29

StripSlashes

适合此或 str_replace

StripSlashes

Good for this or str_replace

筱果果 2024-11-16 06:27:29

您还可以像这样使用 str_replace

$str='25\\\" height x 12\\\" width x 9\\\""';
echo(str_replace("\\", ' ',$str));

You can also use str_replace like this

$str='25\\\" height x 12\\\" width x 9\\\""';
echo(str_replace("\\", ' ',$str));
等待我真够勒 2024-11-16 06:27:29

请使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文