Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用NicEditwithimage upload选项。 我已经测试了我的网站localhost,一切正常。但是因为我已经将它上传到server它不起作用。 我发现原因是,它正在添加\到每个". 我得到的标签看起来像:
NicEdit
image upload
localhost
server
\
"
<img src=\"http://someurl.com/image.jpg\">
我该如何解决这个问题?
Faisal 您可以将所有 \ 替换为“”(空格)。只需使用
private String replace(String Path){ return Path.replaceAll("\\", ""); }
我找到了这种行为的原因。 我addslashes($str)用来避免用户输入任何转义序列。但我忘了stripslashes($str)用于删除\.
addslashes($str)
stripslashes($str)