curl 参数 命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了curl 参数 命令相关的知识,希望对你有一定的参考价值。
参考技术A post jason data with curl:curl -H "Content-Type: application/json" -X POST -d '["x":115.80796583333334,"y":36.23307472222222,"z":null]' http://mars.amap.com/wgs2gcj
linux 下使用 curl 访问带多参数,GET掉参数解决方案
url 为 http://mywebsite.com/index.php?a=1&b=2&c=3
curl -s http://mywebsite.com/index.php?a=1&b=2&c=3
然而在linux下,上面的例子 $_GET只能获取到参数 a
由于url中有&其他参数获取不到,在linux系统中 &会使进程系统后台运行
必须对 &进行下转义才能 $_GET获取到所有参数
curl -s http://mywebsite.com/index.php?a=1\&b=2\&c=3
当然,最简单的方法 用双引号把整个url引起来就ok了
curl -s "http://mywebsite.com/index.php?a=1&b=2&c=3"
以上是关于curl 参数 命令的主要内容,如果未能解决你的问题,请参考以下文章