$value) { // convert an array to a CSV string if (is_array($value)) { $value = '"' . implode('", "', $value) . '"'; } $replace['{' . $token . '}'] = $value; } return strtr($string, $replace); } }