本文目录一览:
- 1、请问如果把PHP中时间戳的日期转换成格林威治时间
- 2、如何用PHP往数据库插入时间
- 3、怎样在thinkphp 查询语句中将时间戳格式转化为年月日格式,然后再作为where条件查询
- 4、怎么在thinkphp的视图模板中把固定的时间戳转为时间格式
- 5、js如何获取像PHP的time()函数返回的时间戳?
请问如果把PHP中时间戳的日期转换成格林威治时间
php自带一个gmdate()函数
function UnixToGmt($format_string = "Y-m-d H:i:s" ,$UnixTime = 0)
{
return @gmdate($format_string,$UnixTime);
}
如何用PHP往数据库插入时间
一般有两种访问:
方法一:
$sql="INSERT INTO `test` (`id`,`content`,`datetime`)values(NULL,'hello',now())";
$query=mysql_query($sql); //执行sql语句
//这种方法,你datetime字段要设计成date类型,now() 是mysql数据库提供的一个获取当前时间函数
方法二:
$sql="INSERT INTO `test` (`id`,`content`,`datetime`)values(NULL,'hello',".time().")";
$query=mysql_query($sql); //执行sql语句
//这种方法:datetime字段设计成int(10)类型。time()是php提供获取时间戳的函数。
推荐使用方法二,因为这种方式,一.排序速度快,二.方便转换时间区。主流的开源程序都有采用这方式。像discuz phpwind dedecms等等。
怎样在thinkphp 查询语句中将时间戳格式转化为年月日格式,然后再作为where条件查询
使用where方法
where方法支持时间比较,例如:
//
大于某个时间
where('create_time','
time','2016-1-1');
//
小于某个时间
where('create_time','=
time','2016-1-1');
//
时间区间查询
where('create_time','between
time',['2015-1-1','2016-1-1']);
第三个参数可以传入任何有效的时间表达式,会自动识别你的时间字段类型,支持的时间类型包括timestamps、datetime、date和int。
使用whereTime方法
whereTime方法提供了日期和时间字段的快捷查询,示例如下:
//
大于某个时间
db('user')
-whereTime('birthday',
'=',
'1970-10-1')
-select();
//
小于某个时间
db('user')
-whereTime('birthday',
'',
'2000-10-1')
-select();
//
时间区间查询
db('user')
-whereTime('birthday',
'between',
['1970-10-1',
'2000-10-1'])
-select();
//
不在某个时间区间
db('user')
-whereTime('birthday',
'not
between',
['1970-10-1',
'2000-10-1'])
-select();
时间表达式
还提供了更方便的时间表达式查询,例如:
//
获取今天的博客
db('blog')
-whereTime('create_time',
'today')
-select();
//
获取昨天的博客
db('blog')
-whereTime('create_time',
'yesterday')
-select();
//
获取本周的博客
db('blog')
-whereTime('create_time',
'week')
-select();
//
获取上周的博客
db('blog')
-whereTime('create_time',
'last
week')
-select();
//
获取本月的博客
db('blog')
-whereTime('create_time',
'month')
-select();
//
获取上月的博客
db('blog')
-whereTime('create_time',
'last
month')
-select();
//
获取今年的博客
db('blog')
-whereTime('create_time',
'year')
-select();
//
获取去年的博客
db('blog')
-whereTime('create_time',
'last
year')
-select();
如果查询当天、本周、本月和今年的时间,还可以简化为:
//
获取今天的博客
db('blog')
-whereTime('create_time',
'd')
-select();
//
获取本周的博客
db('blog')
-whereTime('create_time',
'w')
-select();
//
获取本月的博客
db('blog')
-whereTime('create_time',
'm')
-select();
//
获取今年的博客
db('blog')
-whereTime('create_time',
'y')
-select();
V5.0.5+版本开始,还可以使用下面的方式进行时间查询
//
查询两个小时内的博客
db('blog')
-whereTime('create_time','-2
hours')
-select();
这些在开发手册中都可以找到的。希望可以帮到你。
怎么在thinkphp的视图模板中把固定的时间戳转为时间格式
1、使用date函数进行转换即可。
2、先在控制器中将时间戳分配给模板:
$this-assign('time',$time);
3、在模板里面:
{$time|date="Y-m-d H:i",###}
js如何获取像PHP的time()函数返回的时间戳?
一、js自己使用使用new Date()类型变量的getTime获得同样的结果,但是是客户机的,而且是毫秒,需要除以1千
二、可以这样写代码把time值传递给JS变量:
var t=?php echo time();?;