📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
organikurun.demodesign.com.tr
/
vendor
/
twig
/
twig
/
doc
/
functions
📝
date.rst
← Geri Dön
``date`` ======== Converts an argument to a date to allow date comparison: .. code-block:: jinja {% if date(user.created_at) < date('-2days') %} {# do something #} {% endif %} The argument must be in one of PHP’s supported `date and time formats`_. You can pass a timezone as the second argument: .. code-block:: jinja {% if date(user.created_at) < date('-2days', 'Europe/Paris') %} {# do something #} {% endif %} If no argument is passed, the function returns the current date: .. code-block:: jinja {% if date(user.created_at) < date() %} {# always! #} {% endif %} .. note:: You can set the default timezone globally by calling ``setTimezone()`` on the ``core`` extension instance: .. code-block:: php $twig = new Twig_Environment($loader); $twig->getExtension('Twig_Extension_Core')->setTimezone('Europe/Paris'); Arguments --------- * ``date``: The date * ``timezone``: The timezone .. _`date and time formats`: https://secure.php.net/manual/en/datetime.formats.php
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula