ID: 45283 Comment by: php at info-svc dot com Reported By: php at info-svc dot com Status: Open Bug Type: *General Issues Operating System: Linux PHP Version: 5.2.6 New Comment:
Adding to the confusion, I thought perhaps the unexpected behavior could be caused by the register_globals configuration. However, according to documentation ... http://www.php.net/manual/en/faq.misc.php#faq.misc.registerglobals ... extract($_FILES, EXTR_SKIP); is the correct way to emulate register_globals On. I dumped all of the other superglobals and confirmed the only one containing a 'themefile' index was $_FILES. Both var_dump($_POST); and var_dump($_GET); returned "array(0) {}" Previous Comments: ------------------------------------------------------------------------ [2008-06-16 17:39:59] php at info-svc dot com Note about the "Reproduce code", for best results use <form method="POST" enctype="multipart/form-data"> ------------------------------------------------------------------------ [2008-06-16 17:20:28] php at info-svc dot com Description: ------------ After receiving reports of a broken feature, the problem was traced to extract($_FILES) producing different results on different servers. A server running PHP 5.2.5 gave the expected result where $variable['tmp_name'] contained the uploaded file path. A server running PHP 5.2.3 gave the unexpected result where $variable['tmp_name'] always dumped as string(1) "/" The workaround is to use $_FILES['tmp_name'] in which case both servers gave the expected result. I am stumped as to whether this is caused by a bug that was fixed between versions or some configuration issue I am not aware of? Robert Chapin Chapin Information Services, Inc. Reproduce code: --------------- <form method="POST"> <input name="themefile" type="file" /> <input type="submit" /> </form> <?php extract($_FILES, EXTR_SKIP); var_dump($themefile); var_dump($themefile['tmp_name']); ?> Expected result: ---------------- array(5) { ["name"]=> string(20) "samplefile.txt" ["type"]=> string(24) "application/octet-stream" ["tmp_name"]=> string(18) "/var/tmp/phpSJkwr0" ["error"]=> int(0) ["size"]=> int(379) } string(18) "/var/tmp/phpSJkwr0" Actual result: -------------- string(14) "/tmp/phpZOtyB7" string(1) "/" ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=45283&edit=1
