美文网首页
Post form with CURL

Post form with CURL

作者: liwp_Stephen | 来源:发表于2016-11-04 17:32 被阅读0次

    Use CURL command post form

    curl \
      -F "userid=1" \
      -F "filecomment=This is an image file" \
      -F "image=@/home/user1/Desktop/test.jpg" \
      localhost/uploader.php
    

    相关文章

      网友评论

          本文标题:Post form with CURL

          本文链接:https://www.haomeiwen.com/subject/wfdwuttx.html