Skip to content

Instantly share code, notes, and snippets.

@xnekv03
Created May 29, 2024 16:24
Show Gist options
  • Save xnekv03/ee682beb1708e1cd81d7da76978b08e4 to your computer and use it in GitHub Desktop.
Save xnekv03/ee682beb1708e1cd81d7da76978b08e4 to your computer and use it in GitHub Desktop.
<?php
$url = 'https://gist.githubusercontent.com/xnekv03/9dbe230b5dfb8c8b26912e02e92c563a/raw/443d364cfde02415ad994445b4d02b18718e94b0/sitemap.xml';
// tohle si urcis sam kam to ches ukladat
$destination = 'sitemap.xml';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$fileContent = curl_exec($ch);
if ($fileContent === FALSE) {
die('cURL error: ' . curl_error($ch));
}
curl_close($ch);
file_put_contents($destination, $fileContent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment