php - 对象数组上的 array_diff

标签 php arrays symfony array-difference

我遇到了 PHP 函数 array_diff 的问题。

在这两种情况下,我都在相同类对象的数组上使用它。

第一种情况:

public function findFreeUsers($weekId)
{
    $em = $this->getEntityManager();
    $week = $em->getRepository(Week::class)->findOneBy(["id" => $weekId]);
    $busyWeeks = $em->getRepository(Week::class)->findWeekBetweenDates($week);
    $busyUsers = array();
    foreach ($busyWeeks AS $busyWeek) {
        $tmp = $em->getRepository(UserWeek::class)->findBy(["week" => $busyWeek["id"]]);
        if ($tmp != null) {
            foreach($tmp AS $singleWeek) {
                $busyUsers[] = $singleWeek->getUser();
            }
        }
    }
    $allUsers = $em->getRepository(User::class)->findAll();
    $freeUsers = array_diff($allUsers, $busyUsers);
    return $freeUsers;
}

第二种情况:

public function findFreeCars($weekId)
{
    $em = $this->getEntityManager();
    $week = $em->getRepository(Week::class)->findOneBy(["id" => $weekId]);
    $busyWeeks = $em->getRepository(Week::class)->findWeekBetweenDates($week);
    $busyCars = array();
    foreach ($busyWeeks AS $busyWeek) {
        $tmp = $em->getRepository(CarWeek::class)->findBy(["week" => $busyWeek["id"]]);
        if ($tmp != null) {
            foreach($tmp AS $singleWeek) {
                $busyCars[] = $singleWeek->getCar();
            }
        }
    }
    $allCars = $em->getRepository(Car::class)->findAll();
    $freeCars = array_diff($allCars, $busyCars);
    return $freeCars;
}

我正在转储这些数组,它们都是具有同一类对象的数组。

在第一种情况下它有效,在第二种情况下我有:

Error: Object of class AppBundle\Entity\Car could not be converted to string

最佳答案

您不应该使用 array_diff 来比较数组和对象。

要正确执行此操作,您需要使用 array_udiff()并且您需要定义对象之间的“差异”的含义。

例如,如果对象具有不同的 id,则对象可能不同

function compareCars(Car $objA, Car $objB) {
  return $objA->getId() <=> $objB->getId();
}

$diff = array_udiff($allCars, $busyCars, 'compareCars')

如果您将例如 ComparableInterface 添加到您想要通过 id 仅使用一种方法 getId() 进行比较的每个类,那么您可以利用多态性的好处

interface ComparableInterface
{
   public function getId();
}


class Car implements ComparableInterface
{
    public function getId()
    {
       return $this->id;
    }
    //rest of the class source 
}

function compareCars(ComparableInterface $objA, ComparableInterface $objB) {
   return $objA->getId() <=> $objB->getId();
}

甚至定义 compare() 方法返回每个对象是否相等

interface AdvancedComparableInterface extends ComparableInterface
{
   public function compare(ComparableInterface $obj);
}

class Car implements AdvancedComparableInterface
{
    public function getId()
    {
       return $this->id;
    }

    public function compare(ComparableInterface $obj)
    {
       return $this->getId() <=> $obj->getId();
    }
    //rest of the class source 
}

function compareCars(AdvancedComparableInterface $objA, ComparableInterface $objB) {
   return $objA->compare($objB);
}

如您所见,您可以使用多种方式来定义对象是否与另一个对象相同。例如,您可以通过 VIN 比较的汽车

旁注:

就原则的性能而言,在循环中执行查询不是一个好主意。如果您通过将 busyWeek 的 id 作为数组传递给 findBy 方法来进行一次查询会更好。

关于php - 对象数组上的 array_diff,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53169175/

相关文章:

android - 字节数组图像到位图

php - 使用 Symfony 和 FOSRestBundle 保存多对一关系

php - symfony的测试和浏览器有什么区别

php - Mysqli LIKE 无法使用撇号?

php - 用于在 MySQL 中的密码末尾附加另一个字段值(此处为 id)

python - pandas 从数组中获取嵌套的字符串值

symfony - 如何优雅地登录 Doctrine2 实体

php - mysql_fetch_array() 期望参数 1 是资源,给定的对象不起作用

javascript - 仅当图像完全可用时每秒刷新图像

javascript - 将不同的数组映射到同一个组件