警告:trim() 无效的“..”-范围,“..”-范围需要递增
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的范围不正确。它们必须是
start..endstart..endstart..end
。你已经有了start..end..end..end
。Your ranges are incorrect. They have to be
start..endstart..endstart..end
. You've gotstart..end..end..end
.