Jump to content
  • 0

Вывод даты на русском языке


manolo
 Share

Question

<?php

function transformXML($input, $type){
if ($type == 'ham'){
$reclassify = '<a class="mark_spam" href="actions/reclassify.php?type=spam&id=' . $input['id'] . '">' . __('Spam') . '</a>';
} else {
$reclassify = '<a class="mark_ham" href="actions/reclassify.php?type=ham&id=' . $input['id'] . '">' . __('Not Spam') . '</a>';
}
$input['comment'] = str_replace(array("\r\n", "\n", "\r"), '<br />', htmlspecialchars_decode($input['comment'], ENT_COMPAT));
?>
<div class="comment" id="<?php echo $input['id']; ?>">
<div class="header">
<b><?php echo '', $input['name']; ?></b>
<?php if ((string) $input['website'] != '') : ?>
| <a href="<?php echo $input['website']; ?>"><?php echo $input['website']; ?></a>
<?php endif; ?>
</div>
<div class="content">
<?php echo (string) $input['comment']; ?>
</div>
<div class="edit">
<?php echo date('j M y, H:i:s', (int) $input['date']); ?> - [
<!-- <a class="edit_comment" href="actions/edit.php?id=<?php echo $input['id']; ?>">Edit</a> | -->
<a class="delete_comment" href="actions/delete.php?id=<?php echo $input['id']; ?>"><?php _e('Delete'); ?></a> |
<?php echo $reclassify; ?> ]
</div>
</div>
<?php
}
?>

Подскажите, как сделать дату на русском языке?

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

Перевод скорее должна делать система грубо говоря заменять

January на Январь

Я ознакомился с информацией любезно предоставленной гуглом, там пишут какие-то функции надо подключать. Но мне не совсем понятно каким образом внедрить эту функцию.

Link to comment
Share on other sites

  • 0

показываю суть как легко перевести, пример какбэ намёк:


$mesyac_mas = array( 1 => 'январь', 2 => 'февраль', 3 => 'март', 4 => 'апрель', 5 => 'май', 6 => 'июнь', 7 => 'июль', 8 => 'август', 9 => 'сентябрь', 10 => 'октябрь', 11 => 'ноябрь', 12 => 'декабрь' );
$mesyac = $month_arr[ date( 'n' ) ];

Echo 'Сейчас месяц '.$mesyac;

Link to comment
Share on other sites

  • 0

Даже представления не имею где реализовывать то, что вы написали. unknw.gif Возможно мне кто-то объяснит как изменить формат даты, чтобы вместо названия месяца выдавался порядковый номер месяца? Наверное это намного проще.

Link to comment
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.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   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.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy