Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

save an image use php

<?php
// Image URL
$url = 'https://www.example.com/test.png';
 
// Image path
$img = '../images/test.png';
 
// Save image
file_put_contents($img, file_get_contents($url));
?>
Source by www.cluemediator.com #
 
PREVIOUS NEXT
Tagged: #save #image #php
ADD COMMENT
Topic
Name
4+7 =