Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wanna upload an image by url like

'C:\wamp\www\reelstubs\app\webroot\img\movies\0bf522bb76777ba43393b9be5552b263.jpg'

But I want an array like

array(
   'name' => '',
   'type' => '',
   'tmp_name' => '',
   'error' => (int) 4,
   'size' => (int) 0
),

Please suggest me how to get that?.

share|improve this question
1  
More detail needed, what have you tried? – jakenoble Dec 6 '12 at 12:37
@jakenoble I haven't tried.. suggest me how to get that? – Sanganabasu Dec 6 '12 at 12:39
You are probably looking for the PHP manual on POST method uploads – user1781026 Dec 6 '12 at 12:40

closed as not a real question by jakenoble, emartel, Rowland Shaw, Michael Berkowski, AVD Dec 10 '12 at 2:01

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 2 down vote accepted

Perhaps you need http://php.net/manual/en/function.file-get-contents.php and http://php.net/manual/en/function.file-put-contents.php

Combined together you can try;

// Your file
$file = 'C:\wamp\www\reelstubs\app\webroot\img\movies\0bf522bb76777ba43393b9be5552b263.jpg';

// Open the file to get existing content
$data = file_get_contents($file);

// New file
$new = 'C:\wamp\www\reelstubs\app\webroot\img\movies\newimage.jpg';

// Write the contents back to a new file
file_put_contents($new, $data);
share|improve this answer
     The enctype attribute of the <form> tag specifies which content-type to use when 
    submitting the form.
    "multipart/form-data" is used when a form requires binary data, like the contents of a
     file, to be uploaded
     so please use the post method for uploading a file because post method can handle unlimited data. but get method not not handle more than 8mb data . 
        <html>
          <body>
                <form action="upload_file.php" method="post"
                enctype="multipart/form-data">
                <label for="file">Filename:</label>
                <input type="file" name="file" id="file"><br>
                <input type="submit" name="submit" value="Submit">
                </form>

                </body>
                </html>
    you can handle the array on upload_file.php page .
upload_file.php

<?php
if ($_FILES["file"]["error"] > 0)
  {
  echo "Error: " . $_FILES["file"]["error"] . "<br>";
  }
else
  {
  echo "Upload: " . $_FILES["file"]["name"] . "<br>";
  echo "Type: " . $_FILES["file"]["type"] . "<br>";
  echo "Size: " . ($_FILES["file"]["size"] / 1024) . " kB<br>";
  echo "Stored in: " . $_FILES["file"]["tmp_name"];
  }
?>
share|improve this answer
I knew what you have written.. but I wanna upload a file by url.. – Sanganabasu Dec 6 '12 at 13:00

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