

// file_put_contents not available for PHP4
if (!function_exists('file_put_contents')) {
function file_put_contents($file, $contents = '', $method = 'w+') {
$file_handle = fopen($file, $method);
fwrite($file_handle, $contents);
fclose($file_handle);
return true;
}
}
function cachecheck($filename_cache, $timeout = 10800) {
if (file_exists($filename_cache)) {
$timestamp = filemtime($filename_cache);
// Seconds
if (mktime() - $timestamp < $timeout) {
return true;
} else
return false;
} else
return false;
}
if (!cachecheck($filename = "X50CA0CD46F62EBF2452F6B582BADE45A.gif", 10800)) {
// Load fresh widget from trustedshops Website
// and write in local file
// Open the file to get existing content
$current =
file_get_contents("https://www.trustedshops.com/bewertung/widget/widgets/X50CA0CD46F62EBF2452F6B582BADE45A.gif");
// Write the contents back to the file
file_put_contents($filename, $current);
error_log("new widget saved!");
}else{
error_log("old widget loaded!");
}
?>


Homepage Baukasten Autos inserieren