Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のcurlステートメントを実行してみました
curl --form file[]=@s1.png --form file[]=@s2.png http://api.website.com/upload.php
しかし、私のupload.phpはs1.pngしか受け取りません。s2.png を取得しません。なんで?
このハックを使用してください
curl --form "file1=@s1.png" --form "file2=@s2.png" http://api.website.com/upload.php