1
我想使用diffForHumans與字符串格式的日期。我使用strtotime將字符串轉換爲Unix時間戳。現在的問題是我收到一個錯誤,無法將整數轉化爲時間。我錯過了什麼?使用diffForHumans與strototime
這是我的代碼。
<td>{{strtotime($user['scan'])->diffForHumans(time())}}</td>
$用戶[ '掃描']是一個字符串
我想使用diffForHumans與字符串格式的日期。我使用strtotime將字符串轉換爲Unix時間戳。現在的問題是我收到一個錯誤,無法將整數轉化爲時間。我錯過了什麼?使用diffForHumans與strototime
這是我的代碼。
<td>{{strtotime($user['scan'])->diffForHumans(time())}}</td>
$用戶[ '掃描']是一個字符串
使用分析日期。該日期默認與當前時間進行比較。
<td>{{ \Carbon\Carbon::parse($user['scan'])->diffForHumans() }}</td>