我需要在 php 中返回一个数组并在 javascript 中使用它。当我打印返回值时,它会打印空字符串。我怎么会犯错?
$.ajax({
type: "POST",
url: "sort2.php",
success: function(result){
alert(result[0]);
}
});
//sort2.php
$data[0] = "book";
$data[1] = "pen";
$data[2] = "school";
echo json_encode($data);