Skip to content
Advertisement

Json corrupt variable by addition of a character

I make an Ajax call to a server side php script.

The php should return a json variable like

this : {“erreur”:”Pas de diffusion possible avant le 20-11-2020″,”title”:”Diffusion”}

And I got that : s{“erreur”:”Pas de diffusion possible avant le 20-11-2020″,”title”:”Diffusion”}

Where does this ‘s’ come from ?

A chunk of my code on the server side (‘DiffuseOffre.php’):

JavaScript

The javascript on the client side :

JavaScript

The php debuger show me a correct syntax of the json encoded $retour :

{"erreur":"Pas de diffusion possible avant le 20-11-2020","title":"Diffusion"}

On the firefox debugger ‘response’ appears as ‘undefined’ and in the console :

JavaScript

I look for a sticky ‘s’ which would have been paste to my $retour or $message var, but nothing !

Did someone knows how to remove that ‘s’ character ?

Advertisement

Answer

Are you just trying to find what’s wrong with your JSOn file? If so, you could copy/paste it in https://jsoneditoronline.org/# and you’ll see right away where that extra character is located at.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement