Jump to content

Месяц в дате словом на русском


Recommended Posts

Столкнулся с шаблоном, в котором надо выводить отдельно день, месяц и год. Причём месяц буквами на русском, сделал так, но чё-то мне подсказывает, что есть более изящное решение  :rolleyes:

<div class="news-date">
     <p class="news-date-day">{$post->date|date_format:"%e"}</p>
     <p class="news-date-month">
	{if $post->date|date_format:"%m" == 01}января{/if}
	{if $post->date|date_format:"%m" == 02}февраля{/if}
	{if $post->date|date_format:"%m" == 03}марта{/if}
	{if $post->date|date_format:"%m" == 04}апреля{/if}
	{if $post->date|date_format:"%m" == 05}мая{/if}
	{if $post->date|date_format:"%m" == 06}июня{/if}
	{if $post->date|date_format:"%m" == 07}июля{/if}
	{if $post->date|date_format:"%m" == 08}августа{/if}
	{if $post->date|date_format:"%m" == 09}сентября{/if}
	{if $post->date|date_format:"%m" == 10}октября{/if}
	{if $post->date|date_format:"%m" == 11}ноября{/if}
	{if $post->date|date_format:"%m" == 12}декабря{/if}
	</p>
     <p class="news-date-year">{$post->date|date_format:"%Y"}</p>
</div>

Что-то не нашёл как использовать case в smarty.

 

Edited by Al_Ary
Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...