我是Laravel的新人。我正在使用laravel创建一个应用程序。当我创建帖子时,“created_at”和“updated_at”的值如下所示:
2014-06-26 04:07:31
2014-06-26 04:07:31
但是我希望这些值没有时间看起来像这样:
2014-06-26
2014-06-26
只有没有时间的日期。
有可能???
请帮帮我。
我的帖子模型:
<?php
class Post extends \Eloquent {
protected $fillable = array('title', 'body', 'meta','reporter', 'slug', 'image','top');
public static $rules = array(
'title'=>'required|min:2',
'body'=>'required|min:20',
'reporter'=> 'required|min:2',
'image'=>'image|mimes:jpeg,jpg,bmp,png,gif'
);
public function categories()
{
return $this->belongsToMany('Category');
}
}
我的帖子控制器商店:
public function store()
{
$validator = Validator::make(Input::all(), Post::$rules);
if ($validator->passes()) {
$post = new Post;
$post->title = Input::get('title');
$post->body = Input::get('body');
$post->reporter = Input::get('reporter');
$post->meta = Input::get('meta');
$post->slug = Input::get('title');
$post->top = Input::get('top');
$image = Input::file('image');
if ($image) {
$filename = date('Y-m-d-H:i:s')."-".$image->getClientOriginalName();
Image::make($image->getRealPath())->resize(250, 145)->save('public/images/postimages/'.$filename);
$post->image = 'images/postimages/'.$filename;
}
$categories = Input::get('categories');
$post->save();
$post->categories()->sync($categories);
return Redirect::route('admin.posts.index')
->with('message', 'Product Created');
}
return Redirect::back()
->with('message', 'Something went wrong')
->withErrors($validator)
->withInput();
}
请帮助我。
答案 0 :(得分:62)
在Post
模型中添加两个这样的访问方法:
public function getCreatedAtAttribute($date)
{
return Carbon\Carbon::createFromFormat('Y-m-d H:i:s', $date)->format('Y-m-d');
}
public function getUpdatedAtAttribute($date)
{
return Carbon\Carbon::createFromFormat('Y-m-d H:i:s', $date)->format('Y-m-d');
}
现在,每当您使用模型中的这些属性显示日期时,这些属性将以不同的方式呈现,只有不带时间的日期,例如:
$post = Post::find(1);
echo $post->created_at; // only Y-m-d formatted date will be displayed
因此您无需更改数据库中的原始类型。要更改数据库中的type
,您需要将其从Date
更改为Timestamp
,并且您需要从迁移(如果您完全使用)或直接进入数据库中执行此操作你没有使用迁移。 timestamps()
方法会添加这些字段(使用迁移)并在迁移期间更改这些字段,您需要删除timestamps()
方法并改为使用date()
,例如:
$table->date('created_at');
$table->date('updated_at');
答案 1 :(得分:48)
{{ $post->created_at }}
将返回&#39; 2014-06-26 04:07:31&#39;
解决方案是
{{ $post->created_at->format('Y-m-d') }}
答案 2 :(得分:10)
要更改数据库使用的时间: http://laravel.com/docs/4.2/eloquent#timestamps
提供自定义时间戳格式
如果您希望自定义时间戳的格式,可以覆盖模型中的getDateFormat方法:
class User extends Eloquent {
protected function getDateFormat()
{
return 'U';
}
}
https://laravel.com/docs/5.1/eloquent
如果需要自定义时间戳的格式,请在模型上设置$ dateFormat属性。此属性确定日期属性在数据库中的存储方式,以及将模型序列化为数组或JSON时的格式:
class Flight extends Model
{
/**
* The storage format of the model's date columns.
*
* @var string
*/
protected $dateFormat = 'U';
}
答案 3 :(得分:3)
您也可以这样尝试。
Use Carbon\Carbon;
$created_at = "2014-06-26 04:07:31";
$date = Carbon::parse($created_at);
echo $date->format("Y-m-d");
答案 4 :(得分:1)
如果有人在Laravel 5.3中寻找简单解决方案:
timestamps()
保存,即'2016-11-14 12:19:49'在您的视图中,将字段格式设置如下(或根据需要):
date('F d, Y', strtotime($list->created_at))
对我来说非常适合我。
答案 5 :(得分:0)
在 laravel 6 中,最新版本可以轻松添加到“ APP / user.php”模型中:
/**
* The storage format of the model's date columns.
*
* @var string
*/
protected $dateFormat = 'U';
在模式中,可以添加
$table->integer('created_at')->nullable();
$table->integer('updated_at')->nullable();
答案 6 :(得分:0)
使用碳\碳;
useEffect(() => {
window.addEventListener("scroll", handleScroll);
return () => {
window.removeEventListener("scroll", handleScroll);
};
}, [scrolledY]);
答案 7 :(得分:0)
你可以使用
protected $casts = [
'created_at' => "datetime:Y-m-d\TH:iPZ",
];
在你的模型类中 或此链接后的任何格式 https://www.php.net/manual/en/datetime.format.php