我有一个问题,我在下面有这个结果,我想删除相同的时间戳。
样本结果:
Array
(
[0] => [1341100800000, 0]
[1] => [1341100800000,85]
[2] => [1343779200000,54]
[3] => [1343779200000, 0]
)
期望输出
Array
(
[0] => [1341100800000,85]
[1] => [1343779200000,54]
)
我正在考虑使用 explode 然后 substr 函数来获取值。这是我到目前为止提出的..
$explode = array();
foreach($string_format as $key => $value) {
$explode[] = explode(',', substr($value, 1));
if((isset($explode[0]) && $explode[0][0] == $explode[1][0])) {
unset($explode[0]);
}
//print_r($explode);
}