1

我有这个日期/时间字符串

$dateTime = '2016-11-01T16:00:59:999000Z';

我希望能够删除Z. 不太确定该怎么做。我试图重做这个:

substr($dateTime, 0, -3);

但无法弄清楚如何Z在字符串的末尾而不是字符串的末尾进行修剪。

4

4 回答 4

2
preg_replace("/\d{3}(Z)($)?/", "$1$2", "2016-11-01T16:00:59:999000Z");
// Result: 2016-11-01T16:00:59:999Z

即使Z不在字符串的末尾也应该做这项工作。

于 2016-10-28T12:59:40.730 回答
1

subtr()如果你知道不需要000的总是在同一个位置,你可以只使用两次字符串:

<?php
$date = '2016-11-01T16:00:59:999000Z';

echo substr($date, 0, -4).substr($date, -1); // this produces 2016-11-01T16:00:59:999Z

// substr($date, 0, -4) produces 2016-11-01T16:00:59:999
// the period "." is the concatenation operator
// substr($date, -1) produces Z
于 2016-10-28T12:49:43.290 回答
1
substr_replace($dateTime, '', -4, 3);
于 2016-10-28T12:52:22.923 回答
0
$dateTime = '2016-11-01T16:00:59:999000Z';

$result = substr($dateTime, 0, 23).$dateTime[strlen($dateTime)-1];
于 2016-10-28T12:51:50.273 回答