Advertisement
rgman

Upload Image from URL

Apr 20th, 2015
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. <?php
  2.  
  3. // Cargar una imagen desde una URL..
  4.  
  5. $url = 'http://cdn.screenrant.com/wp-content/uploads/Darth-Vader-voiced-by-Arnold-Schwarzenegger.jpg';
  6.  
  7. $contents = file_get_contents( $url );
  8.  
  9. $filename = basename( $url );
  10. $extension = pathinfo( $filename, PATHINFO_EXTENSION );
  11.  
  12. // Path destino. Aquí hay que tunearlo usando bien las opciones de Yii. Nada raro.
  13. // Lo de abajo es un ejemplo.
  14. $destPath = "{$filename}";
  15.  
  16. file_put_contents( $destPath, $contents );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement