再次使用项目中的DateTime会出现重复问题,如果将array_unique用于具有elemts对象的数组(但仅使用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个
答案 0 :(得分: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));
<强> Demo 强>
答案 1 :(得分: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似乎有效......