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.
オプションで使用NicEditしていimage uploadます。 私は自分のサイトをテストしましたがlocalhost、すべてうまくいきました。しかし、私はそれをにアップロードしたので、うまくいきserverません。 その理由は、\すべてに追加されているためです"。そして、私が取得しているタグは次のようになります:
NicEdit
image upload
localhost
server
\
"
<img src=\"http://someurl.com/image.jpg\">
どうすればこの問題に取り組むことができますか?
私はそのような行動の理由を見つけました。ユーザーがエスケープシーケンスを入力するのを避けるために 使用しています。しかし、削除addslashes($str)に使用するのを忘れていました。stripslashes($str)\
addslashes($str)
stripslashes($str)