sql >> Database >  >> RDS >> Mysql

Bewaar MySQL-resultaten in PHP-array voor twee zoekopdrachten

Ik weet niet of u op fouten controleert, uw vragen voorbereidt of ontsnapt, maar doe dit alstublieft.

Om uw array te genereren, kunt u dit als volgt doen:

    $list = [];
    $countries = $link->query("SELECT country_id, country_name FROM countries ...");

    while ($country_row /*fetch from $countries*/) {

        $country_id = $country_row['country_id']; 

        $country_info = [
                'country_id' => $country_id,
                'country_name' => $country_row['country_name'],
                'country_cities' => []
         ];

        $cities_stmt = "SELECT city_id, city_name FROM cities where $country_id...";
        $cities = $link->query($cities_stmt);

        while ($city_row /*fetch from $cities*/) {

            $city_id = $city_row['city_id'];

            $country_info['country_cities'][$city_id] = [
                    'city_id' => $city_id,
                    'city_name' => $city_row['city_name']
            ];
        }

        $list[$country_id] = $country_info;
    }

Om uw array weer te geven, kunt u het volgende doen:

    foreach ( $list as $country_id => $country_info ) {

        echo "Country ID: $country_id<br />";
        echo 'Country Name: ' . $country_info['country_name'] . '<br />';
        echo 'Country Cities:<br />';

        $cities = $country_info['country_cities']; 

        foreach ( $cities as $city_id => $city_info ) {

                echo "   City ID: $city_id<br />";
                echo '   City Name: ' . $city_info['city_name'] . '<br />';
        }

        echo '<br />';
    }

Als u het land-ID of stads-ID weet, kunt u ook het volgende doen:

    echo 'City Name: ' . $list[$country_id]['country_cities'][$city_id]['city_name'] . '<br />';


  1. YAML opslaan en indexeren met PostgreSQL, met Javascript-lib of herbruikbare functies?

  2. Wat gebeurt er als de MySQL-database niet is gesloten?

  3. Kan de juiste tekens niet uit de database krijgen om weer te geven

  4. Verkrijg duur als tijdstempelverschil voor herhaalde locatiewijzigingen