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?

0

1 Answer 1

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.

Sign up to request clarification or add additional context in comments.

1 Comment

Oh i see Thanks a lot :D

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.