为什么JSON_ENCODE不返回“/”(Slash)它总是像这样“/ /”返回? [重复]

This question already has an answer here:

When i insert url like this

alliedpaint-001-site1.smarterasp.net/white.png

in mysql and encode it using json my url shows like this

alliedpaint-001-site1.smarterasp.net\/white.png

How i can solve this?

</div>

json_encode returns the string, it inserts "\" in order to avoid special interpretation.

you can do 2 things-

1) json_encode($mystring, JSON_UNESCAPED_SLASHES);

or

replace "\" with space using regex.

Hope this helps.