"image_url":"\"http://gfgfgfg.com/wjjjj/kjjk/2014/08/LOGO-1024x1024.jpg\""
I had the above result in json response, but it shows \" in front and back of the url. I just want to remove it from the result.
I saw the .gsub()
in Ruby, but I want to remove \" using PHP. str_replace('\"','',$string)
does not working :
$image_rul=trim(str_replace(array('=','\"'), '', $i_url));