'query database into associative array codeigniter

I want to make a data conversion, by fetching an existing query in the database

$konv =  $this->db->get('konversi')->result_array();
    
  foreach ($konv as $result) {
        $konv_data[$result['kata']] = $result['konversi'] . ",";
  }


 $descc = strtr($data['description'], $konv_data);


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source