Çok-boyutlu bir dizi yoluyla PHP döngü

4 Cevap php

Şu anda CodeIgniter üzerinde inşa ediliyor bir site üzerinde çalışıyorum, ben şu anda ben yapamam, benim sorum dizi olarak sonuç değişen miktarda her iade edilebilir olası 3 diziler olabileceğini düşünüyorum şu anda veri sorgulama am Şu anda ben dizi aracılığıyla bana hayat döngüsü,

benim modeli bu gibi görünüyor

public function get_special_backgrounds() {
    $this->db->select('*');
    $this->db->from('background');
    $this->db->where('is_special', 1);

    $query = $this->db->get();
    return $query->result_array();
}

benim denetleyicisi

enter public function index() {
//  $this->output->enable_profiler(TRUE);
    $data = array();
    if($query = $this->category_model->get_all_online()) {
        $data['main_menu'] = $query;
    }
    $this->load->model('image_model');
    /*
    * Sort out the users backgrounds, basically do a check to see if there is a 'special' background
    * if there is not a 'special' background then IF the user is logged in and has a background of there
    * own show that one, if not show a generic one, if they are not logged in show a generic one
    */
    $image = array();
    if ($query = $this->image_model->get_special_backgrounds()) {
        $image = $query;
    }

    $data = array_merge($data, $image);
    die(print_r($data));
    $this->load->view('home/main_page.php', $data);
}

getirisini alır dizi, bu gibi görünüyor

Array
(
    [main_menu] => CI_DB_mysql_result Object
        (
            [conn_id] => Resource id #28
            [result_id] => Resource id #35
            [result_array] => Array
                (
                )

            [result_object] => Array
                (
                )

            [current_row] => 0
            [num_rows] => 1
            [row_data] => 
        )

    [special] => Array
        (
            [0] => Array
                (
                    [background_id] => 6
                    [background_name] => Master-Backgrounds.png
                    [background_path] => /Users/Simon/Sites/mysite/media/uploads/backgrounds/
                    [is_special] => 1
                    [background_date_uploaded] => 1262687809
                    [users_user_id] => 1
                    [users_user_group_group_id] => 1
                )

            [1] => Array
                (
                    [background_id] => 11
                    [background_name] => Master-mysite-Template.png
                    [background_path] => /Users/Simon/Sites/mysite/media/uploads/backgrounds/
                    [is_special] => 1
                    [background_date_uploaded] => 1262795313
                    [users_user_id] => 5
                    [users_user_group_group_id] => 2
                )

        )

)
1

4 Cevap

Eğer dizinin special bölümünde döngü gerekiyor?

foreach ( $data['special'] as $row ) {
    // do stuff with the $row array
}

Bu bir nesne, yani bir dizi gibi yoluyla döngü olamaz. Ne yapmaya çalışıyoruz görmek ve mantıklı gibi görünüyor anlamak, ama ben neden bahsettiğimi görmek için, bu deneyin:

Bu değiştirin:

public function get_special_backgrounds() {
    $this->db->select('*');
    $this->db->from('background');
    $this->db->where('is_special', 1);

    $query = $this->db->get();
    return $query->result_array();
}

Buna:

public function get_special_backgrounds() {
    $this->db->select('*');
    $this->db->from('background');
    $this->db->where('is_special', 1);

    $query = $this->db->get();
    return $query;
}

VE

Bu değiştirin:

$image = array();
if ($query = $this->image_model->get_special_backgrounds()) {
    $image = $query;
}

Buna:

   if($images = $this->image_model->get_special_backgrounds()) {
       foreach($images->result_array() as $image) {
          echo "<pre>";
          print_r($image);
          echo "</pre></br >";
       }
   }

Foreach deneyin

$arr = (your array);

foreach ($arr as $key => $insideArrays) {
 foreach ($insideArrays as $k2 => $insideInsideArrays){
  ..........
 }

}

Başında bir garip elemanı ile, bir sonuç dizi gibi görünüyor. Ben bunun üzerinden ilk elemanı ve sonra sadece döngü kurtulmak istiyorum:

array_shift($data);
foreach ($data as $row) {
  // Do stuff with $row
  var_dump($row);
}