<?php
function downloadXML($file_url, $save_to)
{
$content = file_get_contents($file_url);
file_put_contents($save_to, $content);
}
// Yandex Metrika
downloadXML('https://example.com/file.xml', realpath("./xml") . '/file.xml');
?>
https://example.com/file.xml
замените на нужный вам урл файла.