| 6 common.inc | drupal_implode_tags($tags) |
| 7 common.inc | drupal_implode_tags($tags) |
| 8 common.inc | drupal_implode_tags($tags) |
Implodes an array of tags into a string.
See also
5 calls to drupal_implode_tags()
File
- includes/
common.inc, line 7254 - Common functions that many Drupal modules will need to reference.
Code
function drupal_implode_tags($tags) {
$encoded_tags = array();
foreach ($tags as $tag) {
// Commas and quotes in tag names are special cases, so encode them.
if (strpos($tag, ',') !== FALSE || strpos($tag, '"') !== FALSE) {
$tag = '"' . str_replace('"', '""', $tag) . '"';
}
$encoded_tags[] = $tag;
}
return implode(', ', $encoded_tags);
}
Login or register to post comments