Advertisement
Valdars

Untitled

Jun 9th, 2013
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.71 KB | None | 0 0
  1. <?php
  2. set_time_limit(40);
  3.  
  4. function wwwcopy($link,$file)
  5. {
  6.  
  7.     $contents = file_get_contents($link);  
  8.   if ($contents !== false && strlen($contents) > 100)
  9.   {      
  10.        file_put_contents("/data01/virt30895/domeenid/www.applespot.ee/test/live/inc/tempfile.html",$contents);
  11.        rename("/data01/virt30895/domeenid/www.applespot.ee/test/live/inc/tempfile.html", $file);
  12.     }
  13. }
  14.  
  15. // Kopeeri dünaamiline live leht staatiliseks
  16.  
  17. wwwcopy("http://live.applespot.ee/livedynamic.php", "/data01/virt30895/domeenid/www.applespot.ee/test/live/inc/livingstatic.html");
  18. sleep(30);
  19.  
  20. wwwcopy("http://live.applespot.ee/livedynamic.php", "/data01/virt30895/domeenid/www.applespot.ee/test/live/inc/livingstatic.html");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement