anders/twig-strftime-extension

use strftime function in twig

Installs: 20

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 5

pkg:composer/anders/twig-strftime-extension

1.1.0 2017-09-13 07:46 UTC

This package is auto-updated.

Last update: 2025-09-29 01:58:20 UTC


README

Use strftime in twig

{{ now|date_modify("+3 day")|strftime('%A') }} //-> Monday (if today is thursday at least :) )

{{ date()|strftime('%I:%M:%S %p') }} //-> Display the current time

Installation

composer require teraone/twig-strftime-extension

Add the extension to your twig environment

// set your locale
setlocale(LC_ALL, 'de_DE');
$twig->addExtension(new Teraone\Twig\Extension\StrftimeExtension());

// optional: set Timezone
$twig->getExtension('core')->setTimezone('Europe/Berlin');

For the full list of supported time formats have a look at the PHP strftime documentation