Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have some pictures that are online, the images are simple http://domain.com/pic.jpg for example; there's an upload feature but that's for user upload the user won't upload, it's an auto upload. This mean I have the Urls on an array and I want that php auto upload those Urls photo into the server Any help!! Thanks

share|improve this question
None of that made very much sense to me. – ceejayoz Mar 21 '09 at 16:24
this don't need to i think it's simple an cler and jesper just answered it :P – Omar Abid Mar 21 '09 at 16:39

1 Answer

up vote 5 down vote accepted
define('IMAGE_PATH', '/path/to/images');

foreach ($urlArray as $url) {
    file_put_contents(IMAGE_PATH . "/" . basename($url), file_get_contents($url));
}

This would require that the user Apache is running under has write access to the IMAGE_PATH. Also, this might not be the exact solution in your case. You seem to be in need of a database to store these filenames, which then probably should be wearing ids instead of their original filenames.

share|improve this answer
1  
You should change the filename before storing or block script execution under IMAGE_PATH using .htaccess. Suppose someone will pass mydomain.com/my_evil_script.php as image URL. – albwq Mar 21 '09 at 17:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.