AJAX Вызов в файл PHP: возвращаемое значение пуст

У меня простой вызов ajax:

function init() { $.ajax({ url: "./myFolder/user.php", data: { action: "init" }, type: "post", success: function (output) { console.log("Success"); console.log("Output: " + output); } }); } 

Метод PHP init вызывается и просто должен возвращать некоторые данные json:

 function init() { $arr = array( array( "region" => "valore", "price" => "valore2" ), array( "region" => "valore", "price" => "valore2" ), array( "region" => "valore", "price" => "valore2" ) ); return json_encode($arr); } 

но моя консоль говорит:

 Success Output: 

Таким образом, выходная переменная пуста. Где мои данные json?

Related of "AJAX Вызов в файл PHP: возвращаемое значение пуст"

На странице user.php вам нужно: –

 function init() { $arr = array( array( "region" => "valore", "price" => "valore2" ), array( "region" => "valore", "price" => "valore2" ), array( "region" => "valore", "price" => "valore2" ) ); echo json_encode($arr); } 

u должен иметь в вашем user.php что-то вроде этого:

 die(init());