Ejemplo n.º 1
0
 public function set_latest_trips()
 {
     $key_array = array();
     $custom_model = new Custom_model();
     $records = $custom_model->get_latest_trips('p.post_url_key');
     if (count($records) > 0) {
         foreach ($records as $value) {
             $key_array[] = $value['post_url_key'];
         }
         $this->ci->redis->set('latest_trips', json_encode($key_array));
     }
     return $key_array;
 }