Change record status: 
Project: 
Introduced in branch: 
8.x
Introduced in version: 
Description: 

The utility functions drupal_implode_tags() and drupal_explode_tags() have been replaced with the Drupal\Component\Utility\Tags class.

Drupal 7

$input = 'foo, bar, baz';
$tags = drupal_explode_tags($input);
$string = drupal_implode_tags($tags);

Drupal 8

$input = 'foo, bar, baz';
$tags = Tags::explode($input);
$string = Tags::implode($tags);
Impacts: 
Module developers
Updates Done (doc team, etc.)
Online documentation: 
Not done
Theming guide: 
Not done
Module developer documentation: 
Not done
Examples project: 
Not done
Coder Review: 
Not done
Coder Upgrade: 
Not done
Other: 
Other updates done
Details: 
Progress: