3

在项目中使用 DateTime 再次遇到复制问题,如果使用 array_unique 到具有对象元素的数组(但仅使用 DateTime 有问题),请参见代码:

class simpleClass
{
    public $dt;

    function __construct($dt)
    {
        $this->dt = $dt;
    }
}

$dateObj = new simpleClass(new DateTime);
$std = new stdClass;
$arr = [$dateObj, $dateObj, $std, $std, $std, $std];

var_dump(array_unique($arr, SORT_REGULAR));

预期 1 个带有 dateObj 的元素,但实际上有 2 个

4

2 回答 2

1

函数array_unique()将比较字符串,因此对象将被转换为字符串。解决方案是使用__toString()魔术方法返回完整日期标识符:

class simpleClass
{
    public $dt;

    function __construct(DateTime $dt) {
        $this->dt = $dt;
    }

    public function __toString() {
        return $this->dt->format('r');
    }

}

$dateObj1 = new simpleClass(new DateTime);
$dateObj2 = new simpleClass(new DateTime);
$dateObj3 = new simpleClass(new DateTime('today'));
$arr = [$dateObj1, $dateObj2, $dateObj3];

print_r(array_unique($arr));

演示

于 2013-11-14T09:24:39.940 回答
0

我还是无法理解。设置数组:

$arr = [$dateObj, $dateObj, $std, $std];

返回:

array (size=2)
    0 => 
        object(simpleClass)[1]
            public 'dt' => 
              object(DateTime)[2]
                  public 'date' => string '2013-11-14 14:37:08' (length=19)
                  public 'timezone_type' => int 3
                  public 'timezone' => string 'Europe/Rome' (length=11)
    2 => 
       object(stdClass)[3]

这样,array_unique 似乎工作......

于 2013-11-14T13:40:27.853 回答