Skip to content
Advertisement

Tag: double-quotes

Remove double quote in json_encode()

I want remove double quote in my json_encode, that is my code: My result is that: I want to remove double quote of “id_posiciones” and “device_version” too. How can I do for the result is that: Answer If you add an underscore to your regex at the end it will do it. I assume that’s what that preg_replace is for

Advertisement