gpt4 book ai didi

php - array_unique 的结果

转载 作者:搜寻专家 更新时间:2023-10-31 21:35:52 25 4
gpt4 key购买 nike

如果将 array_unique 用于具有对象元素的数组,在项目中使用 DateTime 再次遇到复制问题,(但仅 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

最佳答案

函数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 .

关于php - array_unique 的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19973434/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com