我正在尝试使用传统stripslashes
功能去除一些斜线,但结果很奇怪:
echo stripslashes('\\\\');
这给了我:\
echo stripslashes('\\\\\\\\\\\\');
// there should be 12 slashes above
这给了我:(\\\
这里应该有三个斜线。即使这样也很奇怪)
它正在吃双斜线>.<
但是,当我将相同的输入插入http://www.tools4noobs.com/online_php_functions/stripslashes/时,结果会很好吗?
有谁知道发生了什么?我怎样才能控制 stripslashes 的胃口,让它停止双重吞噬这些 sloshes?