警告:trim() 无效的“..”-范围,“..”-范围需要递增

发布于 2024-12-01 13:35:19 字数 474 浏览 1 评论 0原文

我正在使用 trim() 来删除字符串中的字符,但我在问题标题中收到警告消息。我怎样才能摆脱警告,我尝试过以几种不同的方式排列值。

代码:

trim($temp2_description[0], "\xA0..\x0d..\x0a..\x09");

也尝试过:

trim($temp2_description[0], "\x09..\x0a..\x0d..\xA0");

我想要修剪的字符串部分的十六进制值:

a0
a0
a0
a0
a0
0d
0a
09
09
09
09
09
09
09
a0
0d
0a
09
09
09
09
09

我如何指定修剪函数,使其不会'不返回我的问题标题中的警告消息吗?

I'm using trim() to get rid of characters from a string, but I get the warning message in the question title. How can I get rid of the warning, I've tried arranging the values in several different ways.

Code:

trim($temp2_description[0], "\xA0..\x0d..\x0a..\x09");

Also tried:

trim($temp2_description[0], "\x09..\x0a..\x0d..\xA0");

Hex values of the part of the string I want to trim:

a0
a0
a0
a0
a0
0d
0a
09
09
09
09
09
09
09
a0
0d
0a
09
09
09
09
09

How can I specify the trim function so it doesn't return the warning message in my question title?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

独孤求败 2024-12-08 13:35:19

您的范围不正确。它们必须是 start..endstart..endstart..end。你已经有了start..end..end..end

Your ranges are incorrect. They have to be start..endstart..endstart..end. You've got start..end..end..end.

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