我正在研究symfony2项目,我得到了这个例外。谁知道造成它的原因是什么?
注意:C:\ wamp \ www \ EmploiPublic \ vendor \ symfony \ symfony \ src \ Symfony \ Component \ Form \ Extension \ Core \ ChoiceList \ ChoiceList.php第457行中的数组到字符串转换
protected function fixIndex($index)
{
if (is_bool($index) || (string) (int) $index === (string) $index) { //this is line 457
return (int) $index;
}
return (string) $index;
}
在调用$ form-> bind($ request)方法后生成错误;
if ($request->isMethod('POST')) {
$form->bind($request);
$searchQuery = $form->getData();
}