<input type ="checkbox" class="checkbox" name = "objects[]" value="1" id="checkbox0" />Выбрать всё <br>
<input type ="checkbox" class="checkbox" name = "objects[]" value="1.1"/>1.1
<input type ="checkbox" class="checkbox" name = "objects[]" value="1.2"/>1.2
<input type ="checkbox" class="checkbox" name = "objects[]" value="1.3"/>1.3
//если отмечено "выбрать всё"
if (!empty($_POST['objects'][0])){
$objects = $_POST['objects'][0];
}
// если выбраны некоторые чекбоксы
if (!empty($_POST["objects"]) && is_array($_POST["objects"])){
$objects = implode(" ", $_POST["objects"]);
}
foreach($_POST['objects'] as $check) {
$objects .= $check;
}