Skip to content

Instantly share code, notes, and snippets.

@aklump
Created October 12, 2023 20:22
Show Gist options
  • Save aklump/84ab03b9f16c4bda4bfb1ab2d91067bb to your computer and use it in GitHub Desktop.
Save aklump/84ab03b9f16c4bda4bfb1ab2d91067bb to your computer and use it in GitHub Desktop.
csv using "and"
class HumanList {
use \Drupal\Core\StringTranslation\StringTranslationTrait;
public function __invoke(array $items): string {
$last = array_pop($items);
return $this->t(':items and :item', [
':items' => implode(', ', $items),
':item' => $last,
]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment