0

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?

Jim Garrison
  • 85,615
  • 20
  • 155
  • 190
Paul
  • 149
  • 1
  • 13

1 Answers1

1

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.

Tal
  • 1,091
  • 12
  • 25