0

这是 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 而不是 gregorian time 。

4

1 回答 1

1

你应该包含 jdf.php 文件,然后只使用 jdate 而不是 date

<?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;
  }
}
?>

有关更多信息和帮助,请参阅此链接

于 2018-08-18T14:16:41.377 回答