wp_insert_category()
foreach ( $variable as $key => $value ) {
$term_args = array(
'cat_ID' => $value['term_id'],
'cat_name' => $value['term_title'],
'category_description' => '',
'category_nicename' => $value['term_slug'],
'category_parent' => '',
'taxonomy' => 'category'
);
$term_id = wp_insert_category( $term_args );
}