Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Membuat Array Bersarang Multidimensi dari Hasil MySQL dengan Nilai Duplikat (PHP)

Ini terlihat seperti yang Anda cari

$array = array() ;

while ($row = PDO::fetchAll()) // Replace with relevant Information
{
    $section = array();
    $items  = array();
    $prices  = array();

    if(!array_key_exists($row['MenuId'], $array))
    {
        $array[$row['MenuId']] = array();
        $array[$row['MenuId']]['MenuName'] = $row['MenuName'] ;
        $array[$row['MenuId']]['MenuId'] = $row['MenuId'] ;
        $array[$row['MenuId']]['Section'] = array();
    }

    if(!array_key_exists($row['SectionId'], $array[$row['MenuId']]['Section']))
    {
        $array[$row['MenuId']]['Section'][$row['SectionId']] = array();
        $array[$row['MenuId']]['Section'][$row['SectionId']]['SectionId'] = $row['SectionId'] ;
        $array[$row['MenuId']]['Section'][$row['SectionId']]['SubmenuName'] = $row['SubmenuName'] ; 
        $array[$row['MenuId']]['Section'][$row['SectionId']]['Items'] = array() ;

    }

    $items['ItemName'] = $row['ItemName'] ;
    $items['Description'] = $row['Description'] ;

    $prices['PriceId']  = $row['PriceId'] ;
    $prices['Price']  = $row['Price'] ;

    $items['Prices'] = $prices ;
    $section['Items'] = $items ;

    $array[$row['MenuId']]['Section'][$row['SectionId']]['Items'][] = $items ;

}


var_dump($array);

Hanya dengan sedikit perubahan, Anda dapat membuatnya sesuai keinginan




  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. MySQL INSERT IGNORE INTO &kunci asing

  2. Tidak dapat menambahkan batasan kunci asing pada bidang tanggal

  3. Bagaimana cara menyimpan nomor 128 bit dalam satu kolom di MySQL?

  4. Permintaan MySQL untuk memilih hasil dengan kenaikan otomatis sebagai kolom baru ditambahkan dalam hasil

  5. Grup Laravel Eloquent menurut rekaman terbaru