<?php $json = '{"lenght":0,"subcategory":[]}'; $last_id = 123; $obj = json_decode($json, true); array_push($obj["subcategory"], $last_id); $obj["lenght"] = (int)$obj["lenght"] + 1; $json = json_encode($obj); echo $json;
You have javascript disabled. You will not be able to edit any code.