var testResult;
$.ajax({
async: false,
url: 'test.php',
method: "POST", /
data: {
test: 'test',
},
success: function(data) {
alert (data); // Результат успешно выводится
testResult = data;
}
});
console.log(testResult); // Говорит, что переменная не объявлена
$string = "Строка 1\nСтрока 2\nСтрока 3";
$lines=explode("\n",$string);
$test = $lines[count($lines)-1]
echo $test;