问题标签 [microtime]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
php - PHP microtime missing digits
In PHP, when using microtime(true), I am expecting to get in most cases 6 digits to the right of the decimal.
Why is the float only showing the first four digits? Sometimes I only get three digits, which makes sense. Should it not be returning float(1462577720.647289). ie 6 digits in most cases, occasionally 5 digits?
php - memory_get_usage() & microtime()
再会!我有这个代码:
但是当我想在这里使用这个小代码时:
我得到了不好的结果。它说我 +0 Kb 负载 +0 时间。
所以我试着用这个例子:
然后我得到了正常的结果。为什么这样?可能有比上面的代码更好的东西
php - PHP microtime - 微秒格式
如果 PHP 的函数要在结果微秒为零microtime()
的时间点执行,它会产生什么格式?
会是这个样子吗?
0.00 1467926279?
或这个?
0 1467926279
该手册不提供数字格式,仅提供英文格式:
默认情况下,microtime() 返回格式为“msec sec”的字符串
php - PHP - 如何在循环中生成不同的时间戳?
如何循环数组并为每次迭代创建不同的时间戳?
结果:
它们是相同的,但我希望它们彼此独一无二。我错过了什么?
编辑:
即使与time()
. 我得到相同的结果。
php - 如何将分钟转换为微时间
我有一个包含microtime(true)
价值的会话。如下所示:
现在我想在上面的会话中添加 15 分钟,但它应该保留在微时间中。
我已经尝试过了,但它不起作用$starttime*15*60
。
那么如何实现呢?
之后,我试图获取剩余的分钟和秒数:
php - 查找 PHP microtime 1 天前
如何以 PHPmicrotime()
格式查找 1 天前的时间。
我正在尝试这样。但仍然显示当前时间。
php - PHP如何使用微时间作为订单id,需要微时间在9位编码/解码公式中。
我用http://www.epochconverter.com/date-difference
使用此秒数:531921600 差异作为订单 ID,因此根据订单 ID,我可以得到创建订单的时间,但我需要更准确的订单 ID,只有 9 位数的微时间。请给我任何建议或公式,以便每次都获得 9 位数的微时间且独一无二
php - Postgresql如何存储PHP微时间(真)
我正在尝试将 PHP microtime 存储到 postgres DB,我尝试使用时间戳数据类型,但出现错误。
这就是我试图将它存储到 BD(Laravel 框架)的方式
错误:
下一个异常 'Illuminate\Database\QueryException' 带有消息 'SQLSTATE[22007]:无效的日期时间格式:7 错误:类型时间戳的无效输入语法:“1481195739.1502”(SQL:插入“payment_transaction”(“id”,“payment_id” 、“类型”、“金额”、“货币”、“发票号码”、“参考”、“状态”、“psp_reference”、“psp_status”、“微时间”、“updated_at”、“created_at”)值(a6094610-bd37 -11e6-84f4-e710a59a6e32, a6072370-bd37-11e6-ab38-ad42705634e1, open, 175, GBP, , GQX3NITTRZ-20161208111538, done, 8824811960004172, Authorised, 1481195739.1502, 2016-12-08 11:15:39, 2016-12 -08 11:15:39)返回“id”)'
我的问题是可以存储 php microtime(true) 的最合适的 postgres 数据类型是什么
php - PHP中经过的时间?
我已经看到了关于这个主题的几个问题,所有问题都有相同的基本答案。使用 microtime() 记录开始和结束时间,然后减去。大多数情况下这是有效的,除非事件跨越秒数增加的点。此时,结束时间可能小于开始时间。
您可以使用函数将秒添加到 microtime() 以获取秒 + 微时间吗?
例子:
php - 在 php 中创建具有 base_convert 和有限长度的唯一字符串
我需要一个最大长度为 6 且混合了数字和字母的字符串。我检查了:
如何在 PHP 中制作简短的随机唯一键,例如 YouTube 视频 ID?
和
这非常有用,但他们制作长度为 10 - 12 的字符串。我的问题是这段代码的输出是否总是唯一的?
或者
注意:我从基数 6 转换,但输入显然不会是基数 6。我这样做是因为如果从 10 转换为 36,它会生成 10-12 的长度。