вот библиотека jdate JDate
мой файл format.php
<?php
/**
*Format Class
*/
class Format{
public function formatDate($date){
return date('F j, Y, g:i a', strtotime($date));
}
public function textShorten($text, $limit = 400){
$text = $text. "";
$text = substr($text, 0, $limit);
$text = substr($text, 0, strrpos($text, ' '));
$text = $text. "";
return $text;
}
}
?>
и мой код даты поста
<h6><?php echo $fm->formatDate($result['date']); ?>, by<a href="#"><?php echo $result['author']; ?></a></h6>
Как я могу использовать JDATE вместо григорианского времени.
Вы должны включить файл jdf.php, а затем просто использовать jdate вместо даты
<?php
/**
*Format Class
*/
include_once('jdf.php');
class Format{
public function formatDate($date){
return jdate('F j, Y, g:i a', strtotime($date));
}
public function textShorten($text, $limit = 400){
$text = $text. "";
$text = substr($text, 0, $limit);
$text = substr($text, 0, strrpos($text, ' '));
$text = $text. "";
return $text;
}
}
?>
Для получения дополнительной информации и помощи обратитесь к эта ссылка
Других решений пока нет …