指输出指定内容
$arr = DB::table('archives')->where('id',2)->pluck('title');//获取一条数据的指定字段
$arr = DB::table('archives')->where('id','>',1)->select('title');//获取一张表的一列字段
$arr = DB::table('archives')->where('id','>',1)->toSql();//获取查询的SQL语句,公用于条件,不能用于get()之类的有结果之中
created_at 友好时间中文输出(几分钟之前、几天之前)
我们会经常有这样的需求,要求将发布时间显示为 “N 分钟前”、“1 天前” 等 time ago 的格式。
在 Laravel 中这相当简单,不需要依赖其它库(框架内已经依赖的就够了)即可完成。
第一步、设置地区#
在 app/Providers/AppServiceProvider.php 中设置地区:
//...
public function boot()
{
\Carbon\Carbon::setLocale('zh');
}
//...
第二步、视图里使用#
视图模板中使用 Carbon 的 diffForHumans 方法来输出友好时间
{{ $comment->created_at->diffForHumans() }} // 3小时前
搜索
标签
study
ab
amap
apache
apahe
awk
aws
bat
centos
CFS
chrome
cmd
cnpm
composer
consul
crontab
css
curl
cygwin
devops
di
docker
docker,docker-compose
ethereum
excel
fiddler
fluentd
framework
front-end
git
gitgui
github
glide
go
golang
gorm
grafana
gzip
ioc
item2
iterm2
javascript
jenkins
jsonp
kafka
laradock
laravel
larval
linux
liunux
log
mac
mac, wi-fi
macos
magento
mariaDB
minikube
mongoDB
msp
mysql
netbeans
nginx
nodejs
nohup
npm
nsq
php
php-fpm
php7
phpstorm
php扩展
Protobuf
python
redis
scp
server
shell
soap
socket
socket5
sql
sre
ssdb
ssh
ssl
study
sublime
swift
system
td-agent
uml
v2ray
vagrant
vagrnat
vim
vpn
vue
vue.js
webpack
webrtc
websocket
webtatic
windows
windows7
word
wps
xdebug
yarn
yii2
yum
zookeeper
世界国家
互联网
以太坊
分类
前端
小程序
打印机
排序算法
搞笑
权限
粤语
缓存
网络
虚拟机
视频
设计模式
项目管理
热门文章
友情链接