Example #1
0
function get_sitemap_file()
{
    global $sitemapstr;
    $sitemapstr .= get_file_start();
    get_cats_urls();
    $sitemapstr .= "<local_delivery_cost>0</local_delivery_cost>";
    get_prods_urls();
    finish_file();
}
Example #2
0
function finish_file()
{
    global $sitemapstr, $numlinks, $fileindex, $isFinish;
    $sitemapstr .= get_file_finish();
    $file = fopen("sitemap" . $fileindex . ".xml", 'w');
    echo "sitemap" . $fileindex . ".xml - выгружен<br>";
    fwrite($file, $sitemapstr);
    $fileindex++;
    $sitemapstr = "";
    $numlinks = 0;
    $sitemapstr .= get_file_start();
    fclose($file);
    $isFinish = true;
    return 1;
}