我正在使用所选的UI 库为名为“tables”的帖子参数选择多个值。在 Chrome 网络控制台中,我可以检查它是否按预期工作:
Form data
checkin:2012-06-15 16:00:00
checkout:2012-06-15 17:00:00
tables:14
tables:15
tables:16
customer:28
但是当我尝试在控制器中恢复这个表信息时
var_dump($this->input->post('tables'));
我只得到了参数的最后一个值:
string(2) "16"
我也试试var_dump($_POST['tables']);
,结果一样。