English 中文(简体)
争取在省县实现时间差别 亚洲开发银行?
原标题:Getting a time difference in mongoDB?

I m使用PHP + mongoDB。

How can I get a time difference between two time values?

I have a real time value which is string

$realtime = "2010-01-01 12:00:00";

以及不准确的时间,

$mongotime = new Mongodate(strtotime($realtime));

因此,我可以使用固定时间价值或固定时间邮票。

但是,我不相信在两个价值观之间取得时间差异的途径。

Should I just subtract two $mongotime values and does it give me a time difference in seconds?

最佳回答

If you have 2 unix timestamps...

$date  = $item[ pubdate ];
(etc ...)
$unix_now = time();
$result = strtotime($date, $unix_now);
$unix_diff_min = (($unix_now  - $result) / 60);
$min = round($unix_diff_min);

这将使2个时间点之间的雷区数目......

问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签