ignore new "full_path" member in 8.1
[m6w6/ext-apfd] / tests / 003.phpt
index 7cfd9cae048dba0baf06d5c07950e734f0619101..94b898950330554024a9b5709da1fd11ac6fd85f 100644 (file)
@@ -70,6 +70,9 @@ mike
 --FILE--
 <?php
 
+foreach($_FILES as $i => $v) {
+       unset($_FILES[$i]['full_path']); // only in 8.1
+}
 var_dump($_POST, $_FILES);
 
 ?>