我在symfony2中有一个控制器请求。
$current_hardware_version = $request->request->get('hardware_version');
我在终端发送一个curl请求,模拟对此
的调用curl --data "hardware_version = 10" http://localhost/app_dev.php/api/hardware_version/00-11-22-33-44-55
然而,我在函数中引用了变量,并且没有打印出任何内容,而是“在函数结束时编写的”函数结束“。我没有将帖子param正确地传递给curl中的这个url吗?
答案 0 :(得分:0)
从参数引号中删除空格:
curl --data "hardware_version=10" http://localhost/app_dev.php/api/hardware_version/00-11-22-33-44-55