Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Platzieren Sie mehrere Ergebnisse in einem einzigen Array

Sie müssen die Ergebnisse nicht sofort ausgeben:

echo stripslashes(json_encode(array('list' => $posts)));

Sammeln Sie stattdessen alle in einem Array:

$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);

oder so ähnlich für Merge:

$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)));

Außerdem können Sie Ihre Datenbankanfrage ohne rekursive Abfragen durchführen;

Etwas wie:

SELECT vsc.* FROM VendorSubCat vsc
INNER JOIN subcategory sc ON vsc.id=sc.id
WHERE sc.cat_id = 15