Devi aggiungere un'intestazione per emetterla come json
nello script PHP:json_encoded_array.php
header("Content-type: application/json");
Per impostazione predefinita, PHP restituirà text/html
che non è un JSON valido per $.getJSON()
Il tipo di supporto MIME per il testo JSON è application/json. La codifica predefinita è UTF-8. (Fonte:RFC 4627 ).