как я могу вернуть массив из php в javascript, используя ajax

У меня этот код ajax

xmlhttp = new XMLHttpRequest(); xmlhttp.onreadystatechange=function(){ if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById('addIO').innerHTML+=xmlhttp.responseText; } } xmlhttp.open("GET","http://localhost/Mar7ba/Ontology/getRelatedConceptsAndRelations/3/TRUE",true); xmlhttp.send(); 

и у меня есть php-массив

$cars=array("Saab","Volvo","BMW","Toyota");

как я могу отправить массив $ cars на мой javascript?

PHP

 echo json_encode($cars); 

JavaScript

Родной :

 var foo = JSON.parse(xmlhttp.responseText); 

С помощью jQuery :

 var foo = $.parseJSON(xmlhttp.responseText); //or $.getJSON("url", function(data){ //data is your array }); 

ОБНОВИТЬ

 if(xmlhttp.readyState==4 && xmlhttp.status==200){ //document.getElementById('addIO').innerHTML+=xmlhttp.responseText; var cars = JSON.parse(xmlhttp.responseText); //cars will now be the array. //Do whatever you want here. $("#addIO").html(cars.join(", ")); //Join array with ", " then put it in addIO } 

Если вы хотите использовать jQuery, поместите это в <head> :

 <script type="text/javascript" src="link/to/the/file/jquery.js"></script> 

Использовать JSON :

 echo json_encode($cars);