我现在遇到CodeIgniter的问题:我使用REST控制器库(这真的很棒)来创建API但是我无法获得PUT请求...
这是我的代码:
function user_put() {
$user_id = $this->get("id");
echo $user_id;
$username = $this->put("username");
echo $username;
}
Run Code Online (Sandbox Code Playgroud)
我使用curl来发出请求:
curl -i -X PUT -d "username=test" http://[...]/user/id/1
Run Code Online (Sandbox Code Playgroud)
user_id已满,但username变量为空.然而它适用于动词POST和GET.你有什么想法吗?
谢谢 !