curl linux常用命令学习
curl http://mywebsite.com/index.php?a=1&b=2&c=3
$_GET只能获取到参数a
解决办法 改为
curl http://mywebsite.com/index.php?a=1\&b=2&c=3
参考:
https://www.cnblogs.com/z-books/p/6228284.html
学习的时间不一定要特定安排
curl http://mywebsite.com/index.php?a=1&b=2&c=3
$_GET只能获取到参数a
解决办法 改为
curl http://mywebsite.com/index.php?a=1\&b=2&c=3
参考:
https://www.cnblogs.com/z-books/p/6228284.html