最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

php获取当前时间戳、日期并精确到毫秒(三种方法)

来源:动视网 责编:小采 时间:2020-11-02 18:47:06
文档

php获取当前时间戳、日期并精确到毫秒(三种方法)

php获取当前时间戳、日期并精确到毫秒(三种方法):php 获取当前时间戳、日期并精确到毫秒首先,我们封装一个获取时间戳的方法:第一种方法:时间戳13位/** * 获取时间戳到毫秒 * @return bool|string */ public static function getMillisecond(){ list($msec, $sec) = exp
推荐度:
导读php获取当前时间戳、日期并精确到毫秒(三种方法):php 获取当前时间戳、日期并精确到毫秒首先,我们封装一个获取时间戳的方法:第一种方法:时间戳13位/** * 获取时间戳到毫秒 * @return bool|string */ public static function getMillisecond(){ list($msec, $sec) = exp
 php 获取当前时间戳、日期并精确到毫秒

首先,我们封装一个获取时间戳的方法:

第一种方法:时间戳13位

/**
 * 获取时间戳到毫秒
 * @return bool|string
 */
public static function getMillisecond(){
 list($msec, $sec) = explode(' ', microtime());
 $msectime = (float)sprintf('%.0f', (floatval($msec) + floatval($sec)) * 1000);
 return $msectimes = substr($msectime,0,13);
}

其次,调用这个方法,并打印结果:

看看结果:

成功获取到了,时间戳且精确到了毫秒!---- 13位,自己数数。

第二种方法:时间戳浮点型

/**
 * 时间戳 - 精确到毫秒
 * @return float
 */
public static function getMillisecond() {
 list($t1, $t2) = explode(' ', microtime());
 return (float)sprintf('%.0f',(floatval($t1)+floatval($t2))*1000);
}

调用:

//时间戳
$_t = self::getMillisecond();
dd($_t);

打印结果:

第三种方法:14位年月日时分秒+3位毫秒数

/**
 * 年月日、时分秒 + 3位毫秒数
 * @param string $format
 * @param null $utimestamp
 * @return false|string
 */
public static function ts_time($format = 'u', $utimestamp = null) {
 if (is_null($utimestamp)){
 $utimestamp = microtime(true);
 }
 
 $timestamp = floor($utimestamp);
 $milliseconds = round(($utimestamp - $timestamp) * 1000);
 
 return date(preg_replace('`(?<!\\)u`', $milliseconds, $format), $timestamp);
}

调用:

/**
 * @param array $reqData 接口传递的参数
 * @param PayMerchant $payConf object PayMerchant类型的对象
 * @return array
 */
 public static function getAllInfo($reqData, PayMerchant $payConf)
 {
 /**
 * 参数赋值,方法间传递数组
 */
 $order = $reqData['order'];
 $amount = $reqData['amount'];
 $bank = $reqData['bank'];
 $ServerUrl = $reqData['ServerUrl']; // 异步通知地址
 $returnUrl = $reqData['returnUrl']; // 同步通知地址
 //TODO: do something
 $data = array(
 'mchntCode' => $payConf['business_num'],
 'channelCode' => $bank,
 'mchntOrderNo' => $order,
 'orderAmount' => $amount * 100,
 'clientIp' => request()->ip(),
 'subject' => 'goodsName',
 'body' => 'goodsName',
 'notifyUrl' => $ServerUrl,
 'pageUrl' => $returnUrl,
 'orderTime' => date('YmdHis'),
 'description' => $order,
 'orderExpireTime' => date('YmdHis',time()+300),
 'ts' => self::ts_time('YmdHisu'),
 );
 dd($data);
 }

打印结果:

文档

php获取当前时间戳、日期并精确到毫秒(三种方法)

php获取当前时间戳、日期并精确到毫秒(三种方法):php 获取当前时间戳、日期并精确到毫秒首先,我们封装一个获取时间戳的方法:第一种方法:时间戳13位/** * 获取时间戳到毫秒 * @return bool|string */ public static function getMillisecond(){ list($msec, $sec) = exp
推荐度:
标签: 方法 php 时间戳
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top