gpt4 book ai didi

php - 如何在 PHP 中删除对象数组中的重复项?

转载 作者:行者123 更新时间:2023-12-02 07:15:54 25 4
gpt4 key购买 nike

我有一个这样的对象:

class FanStruct{
public $date;
public $userid;

function __construct($date, $id){
$this->date = $date;
$this->userid = $id;
}
}

我在一个数组中最多有 30 个,它们按 $userid 排序。

遍历数组并根据 $userid(忽略 $date)删除重复对象的最佳方法是什么?

最佳答案

这是一个简单的测试,至少可以帮助您入门。您的 __toString 方法可能需要更精细才能为您的 FanStruct 实例生成唯一性

<?php

class FanStruct{
public $date;
public $userid;

function __construct($date, $id){
$this->date = $date;
$this->userid = $id;
}

public function __toString()
{
return $this->date . $this->userid;
}
}

$test = array(
new FanStruct( 'today', 1 )
,new FanStruct( 'today', 1 )
,new FanStruct( 'tomorrow', 1 )
);

print_r( array_unique( $test ) );

?>

关于php - 如何在 PHP 中删除对象数组中的重复项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1050709/

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