window curl

来源:互联网 发布:使用java程序录音 编辑:程序博客网 时间:2024/06/03 22:48
http://curl.haxx.se/
下载curl拓展

-----------------------------------------------------

curl 
    --request POST| GET | PUT | DELETE
   -X ( 必须大写。 等于 --request )
   -d  "name=peter&age=10"       post和put   的内容  必须双引号
   -H "test:test"   设置header
-----------------------------------------------------

curl --request POST -d "name=peter&age=12" localhost/tp32/index.php/index/post
curl -X POST -d "name=peter&age=12" localhost/tp32/index.php/index/post
curl -X GET localhost/tp32/index.php/index/index/id/10
curl -X GET -H "test:test" localhost/tp32/index.php/index/header 
0 0
原创粉丝点击