货币问答:php时间

太史亨

php时间格式转换

php日期格式转换总结:

<?php

//将当前时间转换成yyyy-mm-dd格式串,再转换成日期格式,绕了一圈哈

echo strtotime(date('Y-m-d',time()).' 00:00:00');

//将GNU 日期输入格式的字符转换成时间

echo strtotime('now');

//标准的字符串转换成时间

$t = '2012-9-10 15:18:06';

$time = strtotime($t);

//将时间转换成日期字符yyyymmdd,再转换成整型格式

$d = intval(date('Ymd',$time));

echo '付款时间:'.$d;

<?phpheader("Content-type: text/html; charset=utf-8"); $txDate = '2016-06-16';

$dateTime1 = strtotime($txDate);  //int 1466028000 将英文文本日期时间解析为 Unix 时间戳:

$dateTime2= date("Y-m-d H:i:s",$dateTime1); //string '2016-06-16 00:00:00'

(length=19)  Date() 函数把时间戳格式化为更易读的日期和时间。

//拼接今日最后时间2016-06-16 23:59:59

$dateTime= date("Y-m-d H:i:s",strtotime(date("Y-m-d",strtotime($dateTime2))."+ 23 hours 59 minutes  59 seconds ")); //string '2016-06-16 23:59:59' (length=19)

$sql = select * form `vvt_user` where userid = 100 AND date_time >= $dateTime2 AND date_time <= $dateTime;?>

推荐
不推荐
展开
收起
邢天相

php时间格式怎么转换?

php日期格式转换总结:

<?php

//将当前时间转换成yyyy-mm-dd格式串,再转换成日期格式,绕了一圈哈

echo strtotime(date('Y-m-d',time()).' 00:00:00');

//将GNU 日期输入格式的字符转换成时间

echo strtotime('now');

//标准的字符串转换成时间

$t = '2012-9-10 15:18:06';

$time = strtotime($t);

//将时间转换成日期字符yyyymmdd,再转换成整型格式

$d = intval(date('Ymd',$time));

echo '付款时间:'.$d;

<?phpheader("Content-type: text/html; charset=utf-8"); $txDate = '2016-06-16';

$dateTime1 = strtotime($txDate);  //int 1466028000 将英文文本日期时间解析为 Unix 时间戳:

$dateTime2= date("Y-m-d H:i:s",$dateTime1); //string '2016-06-16 00:00:00'

(length=19)  Date() 函数把时间戳格式化为更易读的日期和时间。

//拼接今日最后时间2016-06-16 23:59:59

$dateTime= date("Y-m-d H:i:s",strtotime(date("Y-m-d",strtotime($dateTime2))."+ 23 hours 59 minutes  59 seconds ")); //string '2016-06-16 23:59:59' (length=19)

$sql = select * form `vvt_user` where userid = 100 AND date_time >= $dateTime2 AND date_time <= $dateTime;?>

推荐
不推荐
展开
收起
马谡

php时间 与日期

还是修改 php.ini 吧date.time_zone = "Asia/Shanghai"ordate.time_zone = PRC

推荐
不推荐
展开
收起
玉匣

PHP 时间 加上 时 分 秒

$S=rand(0,23);//随机--时$F=rand(0,59);//随机--分$M=rand(0,59);//随机--秒$coupon_start_time = strtotime(date('Y-m-d')." $S:$F:$M");//给这个上加上“$S,$F,$M”$coupon_end_time   = strtotime(date('Y-m-d',strtotime('+30 day'))." $S:$F:$M");//给这个也上加上“$S,$F,$M”

推荐
不推荐
展开
收起
神墓

php当前时间夹30分钟

<?php /* * author: china_skag * time: 2014-07-08 * 发博时间计算(年,月,日,时,分,秒) * $createtime 可以是当前时间 * $gettime 你要传进来的时间 */ class Mygettime{ function __construct($createtime,$gettime) { $this->createtime = $createtime; $this->gettime = $gettime; } function getSeconds() { return $this->createtime-$this->gettime; } function getMinutes() { return ($this->createtime-$this->gettime)/(60); } function getHours() { return ($this->createtime-$this->gettime)/(60*60); } function getDay() { return ($this->createtime-$this->gettime)/(60*60*24); } function getMonth() { return ($this->createtime-$this->gettime)/(60*60*24*30); } function getYear() { return ($this->createtime-$this->gettime)/(60*60*24*30*12); } function index() { if($this->getYear() > 1) { if($this->getYear() > 2) { return date("Y-m-d",$this->gettime); exit(); } return intval($this->getYear())." 年前"; exit(); } if($this->getMonth() > 1) { return intval($this->getMonth())." 月前"; exit(); } if($this->getDay() > 1) { return intval($this->getDay())." 天前"; exit(); } if($this->getHours() > 1) { return intval($this->getHours())." 小时前"; exit(); } if($this->getMinutes() > 1) { return intval($this->getMinutes())." 分钟前"; exit(); } if($this->getSeconds() > 1) { return intval($this->getSeconds()-1)." 秒前"; exit(); } } } //类的使用实例 /* * * 调用类输出方式 * * $a = new Mygettime(time(),strtotime('-25 month')); * echo iconv('utf-8', 'gb2312', $a->index())?iconv('utf-8', 'gb2312', $a->index()):iconv('utf-8', 'gb2312', '当前'); * */

看不懂,把源码复制输出的不是我要的结果。有没有更简单的,就是取当前时间然后给当前时间加30分钟的。

推荐
不推荐
展开
收起
孙峻

PHP取出固定日期时间当中的日期怎么取?

php代码如下

<?phpecho date('d', 1452126507);

代码解释

d表示的是日(其完整格式“Y-m-d H:i:s”)

Y:代表年

m:代表月

d:代表日

H:代表时

i:代表分

s:代表秒

1452126507是时间戳

推荐
不推荐
展开
收起
谭桂琼

php中年份怎么和具体时间比较

$zuihoutime应该是任意的时间格式的字符串,如‘2013-11-27’,或者如果$zuihoutime是时间戳,直接和当前时间比较就可以了。如果你想和让$zuihoutime和当前时间比较,就这样写:if(strtotime($zuihoutime) == time()){echo $zuihoutime;}else {echo "24小时内没有访问本站";}如果你是想判断用户在24小时内有没有访问本站,同时$zuihoutime是最后访问时间,可以这样写:$intervalTime = $time - strtotime($zuihoutime);if($intervalTime < 24*60*60 ){//用户离上一次访问时间没有24小时echo $zuihoutime;}else {echo "24小时内没有访问本站";}

推荐
不推荐
展开
收起
炼刚柔

php输出时间,格式为:“时:分:秒.毫秒”,例如:19:37:05.380,要用什么函数?

<?php

function udate($format = 'u', $utimestamp = null) {

if (is_null($utimestamp))

$utimestamp = microtime(true);

$timestamp = floor($utimestamp);

$milliseconds = round(($utimestamp - $timestamp) * 1000000);

return date(preg_replace('`(?<!\\\\)u`', $milliseconds, $format), $timestamp);

echo udate('Y-m-d H:i:s.u');

?>

PHP 简介

本词条由“科普中国”百科科学词条编写与应用工作项目 审核 。

PHP(外文名:PHP: Hypertext Preprocessor,中文名:“超文本预处理器”)是一种通用开源脚本语言。语法吸收了C语言、Java和Perl的特点,利于学习,使用广泛,主要适用于Web开发领域。PHP 独特的语法混合了C、Java、Perl以及PHP自创的语法。它可以比CGI或者Perl更快速地执行动态网页。用PHP做出的动态页面与其他的编程语言相比,PHP是将程序嵌入到HTML(标准通用标记语言下的一个应用)文档中去执行,执行效率比完全生成HTML标记的CGI要高许多;PHP还可以执行编译后代码,编译可以达到加密和优化代码运行,使代码运行更快。

推荐
不推荐
展开
收起
丽山

请问——php里日期时间,只显示日期的函数是哪个

$str = '2009-03-30 11:10:05';$timestamp = strtotime($str);date('Y-m-d', $timestamp);简单写就是这样:date('Y-m-d', strtotime('2009-03-30 11:10:05'));输出是:2009-03-30(注意格式里的"Y-m-d"的大小写。)

推荐
不推荐
展开
收起
查看更多答案
收起