php filetime,DateTime::format

用户评论:

[#1]

ivannack at gmail dot com [2015-11-25 02:25:45]

Um exemplo com m??todos encadeados:

$time = '2015-11-24T23:52:45+0000';

echo DateTime::createFromFormat(DateTime::ISO8601, $time)->format('d/m/Y');

// retorna: 24/11/2015

echo DateTime::createFromFormat('Y-m-d', '2015-11-25' )->format('d/m/Y');

//retorna: 25/11/2015

[#2]

prussell at cloudworksconsulting dot com [2014-09-15 12:02:05]

The udate function is a great start, but the formatting of the milliseconds is a little off. If it is within the first 100000 microseconds then the string will be less than 6 characters, so 0.012435 will appear as 0.12345. The revision below fixes this.

function udate($strFormat = 'u', $uTimeStamp = null)

{

// If the time wasn't provided then fill it in

if (is_null($uTimeStamp))

{

$uTimeStamp = microtime(true);

}

// Round the time down to the second

$dtTimeStamp = floor($uTimeStamp);

// Determine the millisecond value

$intMilliseconds = round(($uTimeStamp - $dtTimeStamp) * 1000000);

// Format the milliseconds as a 6 character string

$strMilliseconds = str_pad($intMilliseconds, 6, '0', STR_PAD_LEFT);

// Replace the milliseconds in the date format string

// Then use the date function to process the rest of the string

return date(preg_replace('`(?

}

[#3]

soul dot enforcer at gmail dot com [2014-04-02 12:48:39]

For full reference of the supported format character and results,

see the documentation of date() :

http://www.php.net/manual/en/function.date.php

[#4]

chris at codewiz dot biz [2014-02-13 02:47:52]

I believe this is a bug but its note-worthy if it is intended (I am using PHP 5.5.3).

$ php --version

PHP Warning:  Module 'xdebug' already loaded in Unknown on line 0

PHP 5.5.3-1ubuntu2.1 (cli) (built: Dec 12 2013 04:24:35)

Copyright (c) 1997-2013 The PHP Group

Zend Engine v2.5.0, Copyright (c) 1998-2013 Zend Technologies

with Xdebug v2.2.3, Copyright (c) 2002-2013, by Derick Rethans

with Zend OPcache v7.0.3-dev, Copyright (c) 1999-2013, by Zend Technologies

What is happening:

DateTime()->format() will modify the timezone. So do not expect the public date property to be returned (format mask applied) based on the current public timezone property. format will decide that when calling ->format() it will use the server timezone which eliminates all usefulness of ->setTimezone().

$nowUtc= new \DateTime('now',  new \DateTimeZone('UTC') );

echo'$nowUtc'.PHP_EOL;var_dump($nowUtc);$nowUtc= new \DateTime('now',  new \DateTimeZone('UTC') );

echo'$nowUtc->format(\'Y-m-d h:i:s\')'.PHP_EOL;var_dump($nowUtc->format('Y-m-d h:i:s'));$nowUtc->setTimezone( new \DateTimeZone('Australia/Sydney') );

echo'$nowUtc->setTimezone( new \DateTimeZone( \'Australia/Sydney\' ) )'.PHP_EOL;var_dump($nowUtc);

echo'$nowUtc->format(\'Y-m-d h:i:s\')'.PHP_EOL;var_dump($nowUtc->format('Y-m-d h:i:s'));exit;?>

outputs;

$nowUtc

object(DateTime)[2607]

public 'date' => string '2014-02-13 02:42:48' (length=19)

public 'timezone_type' => int 3

public 'timezone' => string 'UTC' (length=3)

$nowUtc->format('Y-m-d h:i:s')

string '2014-02-13 02:42:48' (length=19)

$nowUtc->setTimezone( new \DateTimeZone( 'Australia/Sydney' ) )

object(DateTime)[2608]

public 'date' => string '2014-02-13 13:42:48' (length=19)

public 'timezone_type' => int 3

public 'timezone' => string 'Australia/Sydney' (length=16)

$nowUtc->format('Y-m-d h:i:s')

string '2014-02-13 01:42:48' (length=19) // expected 2014-02-13 13:42:48 based on Australia/Sydney - what is 2014-02-13 01:42:48 from anyway!

[#5]

daysnine at gmail dot com [2013-11-04 11:02:55]

Seems like datetime::format does not really support microseconds as the documentation under date suggest it will.

Here is some code to generate a datetime with microseconds and timezone:

private 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('`(?

}

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

// Will output something like: 2014-01-01 12:20:24.42342 CET

[#6]

Nads [2013-07-22 13:51:13]

Date and Time with split seconds

$micro_date = microtime();

$date_array = explode(" ",$micro_date);

$date = date("Y-m-d H:i:s",$date_array[1]);

echo "Date: $date:" . $date_array[0]."
";

[#7]

craig dot constable at gmail dot com [2012-03-02 04:24:37]

Using a datetime field from a mysql database e.g. "2012-03-24 17:45:12"

$result=mysql_query("SELECT `datetime` FROM `table`");$row=mysql_fetch_row($result);$date=date_create($row[0]);

echodate_format($date,'Y-m-d H:i:s');#output: 2012-03-24 17:45:12echodate_format($date,'d/m/Y H:i:s');#output: 24/03/2012 17:45:12echodate_format($date,'d/m/y');#output: 24/03/12echodate_format($date,'g:i A');#output: 5:45 PMechodate_format($date,'G:ia');#output: 05:45pmechodate_format($date,'g:ia \o\n l jS F Y');#output: 5:45pm on Saturday 24th March 2012?>

[#8]

ca at agercon dot dk [2011-07-01 08:16:09]

The date_format can be use to get the last day of February:

return$return;

}

echolast_day_of_feb(2011) ."\n";# 2011-02-28echolast_day_of_feb(2012) ."\n";# 2011-02-29?>

[#9]

James Meyer [2011-01-06 11:49:12]

A note about version differences - the results of this function differ significantly from php 5.2.x to 5.3.x .

The 5.2 implementations will often parse to non-sensical values, such as:

1964/11-12: 1964/-99999/-99999

12/11-1964: -99999/12/11

12-31-1964: -99999/-99999/-99999

11121875: 1112/01/187

01321901: 0132/01/190

(this one makes sense, but was a poor guess)

31/12/1964: 1964/01/12

In 5.3+, these all come back as false, as I would expect.  5.2 was just a little optimistic about it's ability to parse dates, I guess.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值