0

假设我有以下字符串:

$string = 'Th1s 1s my 5tr1ng with a timestamp 1357002120 and another timestamp here 1357002120.';

我想要的是返回一个字符串,没有两个时间戳,但保留任何其他数字不变。

所以,输出应该是:

'Th1s 1s my 5tr1ng with a timestamp and another timestamp here。

我认为某种正则表达式可以做到这一点,但我不知道从哪里开始。

4

1 回答 1

3

您可以稍后开发自己的简单解决方案:

<?php
$string = 'Th1s 1s my 5tr1ng with a timestamp 1357002120 and another timestamp here 1357002120.';
echo preg_replace("#\d{10,11}#", "", $string);
?>
于 2013-07-17T06:36:44.050 回答