niammuddin

download antar hosting

Mar 13th, 2014
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.73 KB | None | 0 0
  1. Script php untuk transfer file antar hostingan atau cPanel tanpa harus download ke computer terlebih dahulu
  2.  
  3. <?php
  4. system("https://wordpress.org/latest.zip");
  5. ?>
  6.  
  7. kalau fungsi systemnya di disabled ama hosternya, anda bisa gunakan fungsi curl
  8.  
  9. <?php
  10. $ch = curl_init("https://wordpress.org/latest.zip");
  11. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  12. curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
  13. $output = curl_exec($ch);
  14. $fh = fopen("latest.zip", 'w');
  15. fwrite($fh, $output);
  16. fclose($fh);
  17. ?>
  18.  
  19. kalau fungsi curlnya juga didisabled, anda bisa gunakan fungsi file_get_contents
  20.  
  21. <?php
  22. $output = file_get_contents("https://wordpress.org/latest.zip");
  23. $fh = fopen("latest.zip", 'w');
  24. fwrite($fh, $output);
  25. fclose($fh);
  26. ?>
Add Comment
Please, Sign In to add comment