我正在尝试访问一个 php 数组。但它让我抛出数组到字符串的转换错误。
这是我的代码
if(isset($_POST['category'])){
$category = array($_POST['category']);
if(sizeof($category) > 0){
foreach($category as $key){
$categ = $categ.$key.', ';
}
}
}