$.getJSON('parser.php').done(function (damp) { console.log(damp); });
$url = 'https://toster.ru/questions';
$contents = file_get_contents($url);
/* Тут куча регулярок и удаление ненужного html */
$damp = $contents;
echo json_encode($damp,JSON_FORCE_OBJECT);