We've all built them about a hundred times, those copyright lines with the year in the footer. Here's a few ways to print those with the current year generated, along with any drawbacks involved (looking at you Javascript!).
PHP:
Javascript:
<script type="text/javascript">document.write(new Date().getFullYear());</script>
The issue with Javascript is it uses the local computer's time, not the server's.
Twig:
{{ 'now'|date('Y') }}
step 1:-
{{ "now"|date("m/d/Y") }}
No comments:
Post a Comment
If you have any problem please let me know.