Home >Backend Development >PHP Tutorial >Laravel时间显示问题

Laravel时间显示问题

WBOY
WBOYOriginal
2016-06-06 20:09:331479browse

Laravel时间显示问题,我想让时间这样显示:

比如:一篇文章的发表时间:

<code>**距离现在时间**      **显示格式**
10天                   直接显示日期</code>

应该怎么做呢?

回复内容:

Laravel时间显示问题,我想让时间这样显示:

比如:一篇文章的发表时间:

<code>**距离现在时间**      **显示格式**
10天                   直接显示日期</code>

应该怎么做呢?

Laravel 本身有对 Carbon 的完美支持,巧妙的利用就可以达到很好的效果:

首先:

在你的app/Providers/AppServiceProvider.php中添加\Carbon\Carbon::setLocale('zh');这一行到boot()方法当中,(为了中文化显示)

<code> public function boot()
    {
        \Carbon\Carbon::setLocale('zh');
    }</code>

第二:

ArticleModel 中添加下面的方法:

<code>  public function getCreatedAtAttribute($date)
    {
        if (Carbon::now() addDays(10)) {
            return Carbon::parse($date);
        }

        return Carbon::parse($date)->diffForHumans();
    }
   </code>

这里注意到使用到了 Laravel 的 getXXXAttribute() 的特性,如果你是其他的字段,比如published_at,方法应该写成 getPublishedAtAttribute($date),别忘了在Article头部use Carbon\Carbon;

最后:

直接显示你的日期就好:

<code>$article = \App\Article::find(7);

{{ $article->created_at }}; // 视图中直接显示</code>

更多 Laravel 的讨论学习,请到我的小站:https://laravist.com

亲测: Laravel 5.1 和 5.2 都OK

时间问题前端处理可能会对服务器压力小点,有一个moment.js你可以试一下
moment.js

<code class="php">public function formatDate($time = 0){
    $tmp = time() - $time;
    if($tmp && $tmp  60 * 60 && $tmp  60 * 60 * 24 && $tmp </code>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn