انتقل إلى المحتوى الرئيسي

date

{% set ts = '2024-01-15T12:34:56Z' %}
{{ ts | date('en-US', { year: 'numeric', month: '2-digit', day: '2-digit' }) }}
01/15/2024
{% set ts = '2024-01-15T12:34:56Z' %}
{{ ts | date('en-US', { year: 'numeric', month: 'long', day: 'numeric' }) }}
January 15, 2024

بالعربية

{% set ts = '2024-01-15T12:34:56Z' %}
{{ ts | date('ar-US', { year: 'numeric', month: 'long', day: 'numeric' }) }}
15 يناير 2024