summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/nelsonken/gomf/up.php
blob: e56e5bbbc25de5832727663b8526f1662c6fd6a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/**
 *
 * PHP UPLOAD DEMO for gomf test
 * USAGE: 
 *      php -S 127.0.0.1:8080 -t ./
 *
 */

print_r($_FILES);
  
if ($_FILES["picture"]["error"] > 0) {
    echo "Return Code: " . $_FILES["picture"]["error"] . "\n";
} else {
    echo "Upload: " . $_FILES["picture"]["name"] . "\n";
    echo "Type: " . $_FILES["picture"]["type"] . "\n";
    echo "Size: " . ($_FILES["picture"]["size"] / 1024) . " Kb\n";
    echo "Temp file: " . $_FILES["picture"]["tmp_name"] . "\n>";

    if (file_exists($_FILES["picture"]["name"]))
      {
      echo $_FILES["picture"]["name"] . " already exists. \n";
      }
    else
      {
      move_uploaded_file($_FILES["picture"]["tmp_name"], $_FILES["picture"]["name"]);
      echo "Stored in: " . $_FILES["picture"]["name"] . "\n";
      }
}