var_dump($_FILES)
donne ce qui suit:Comment traiter <input type = "fichier" name = "test1 [f]" /> en PHP?
array
'test1' =>
array
'name' =>
array
'f' => string 'ntuser.dat.LOG' (length=14)
'type' =>
array
'f' => string 'application/octet-stream' (length=24)
'tmp_name' =>
array
'f' => string 'D:\wamp\tmp\php223.tmp' (length=22)
'error' =>
array
'f' => int 0
'size' =>
array
'f' => int 0
Pourquoi http conçu de cette façon Comment puis-je traiter efficacement le tableau (ce qui signifie parfois pas looping?) Donc je peux obtenir le fichier par $_FILES['test1']['f']
?
+1 Vous pouvez rebattre le tableau en quelque sorte, mais je voudrais aller avec cette suggestion - plus facile. –
oui, donc on peut juste foreach $ _FILES. très utile –