查找两个对象数组之间的差异,其中比较是基于方法调用的返回值

问题描述 投票:0回答:1

我的 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;
}

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

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

错误:AppBundle\Entity\Car 类的对象无法转换为字符串

php arrays symfony object array-difference
1个回答
2
投票

您不应该使用 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 方法来进行一次查询,效果会更好。

© www.soinside.com 2019 - 2024. All rights reserved.