error_reporting(E_ALL);
$xml = simplexml_load_file("https://www.rosatom.ru/upload/iblock_rss_38.xml");
$title = ($xml->channel->item[0]->title);
$description = (string)$xml->channel->item[0]->description;
$short_description = mb_strimwidth($description, 0, 250, "...");
echo print_r($short_description);