Vous devez ajouter un en-tête pour le sortir en tant que json
dans le script PHP :json_encoded_array.php
header("Content-type: application/json");
Par défaut, PHP renverra text/html
qui n'est pas un JSON valide pour $.getJSON()
Le type de média MIME pour le texte JSON est application/json. L'encodage par défaut est UTF-8. (Source :RFC 4627 ).