Bạn không cần lặp lại kết quả ngay lập tức:
echo stripslashes(json_encode(array('list' => $posts)));
Thay vào đó, hãy gom tất cả vào một mảng:
$results = array();
//Your code
$results[] = array('list' => $posts);
//...
$results[] = array('list' => 'No product list');
//...
//And echo just one time in the end:
echo stripslashes(json_encode($results);
hoặc cái gì đó tương tự như thế này để hợp nhất:
$results = array();
//Your code
$results = $results + $posts;
//...
$results = 'No product list';
//...
//And echo just one time in the end:
echo stripslashes(json_encode(array('list' => $results)));
Ngoài ra, Bạn có thể thực hiện yêu cầu cơ sở dữ liệu của mình mà không cần truy vấn đệ quy;
Một cái gì đó như:
SELECT vsc.* FROM VendorSubCat vsc
INNER JOIN subcategory sc ON vsc.id=sc.id
WHERE sc.cat_id = 15