- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到了 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/
我遇到了 PHP 函数 array_diff 的问题。 在这两种情况下,我都在相同类对象的数组上使用它。 第一种情况: public function findFreeUsers($weekId) {
这可能是一个非常简单的问题,但在尝试解决几个小时后,我认为我的大脑现在正在以非常狭窄和特定的角度寻找解决方案。我什至可能使用了错误的功能!! 我有 2 个数组,我想要两个数组之间的任何可能差异。这适用
这个问题已经有答案了: Compare 2-dimensional data sets based on a specified second level value (9 个回答) 已关闭去年。 我
我有两个数组。其中之一是多维数组,例如 $products = array( 0 => array( 'product_id' => 33,
这个问题在这里已经有了答案: Compare 2-dimensional data sets based on a specified second level value (9 个回答) 关闭去年
我有两个数组。其中之一是多维数组,例如 $products = array( 0 => array( 'product_id' => 33,
我有两个包含重复值的数组: $test1 = Array( "blah1", "blah1", "blah1", "blah1",
有人可以看一下并让我知道我做错了什么吗...我想要实现的是,在数据库中我有: AGENT_REF = 1 AGENT_REF = 2 AGENT_REF = 3 AGENT_REF = 4 AGENT
我正在寻找一些工具来为我提供两个数组的递归差异。我设想的是一个带有两个颜色编码树结构的网页。在每棵树上,绿色是数组中与两个数组都匹配的部分,红色是每个数组中不匹配的部分。类似于 dBug 的输出 我有
我混淆了 array_diff 行为 为什么 diff 数组上不存在流派?你知道如何解决这个问题吗? -代码 '0', 'value02' => 'v2', 'genre' => '
(I'm a beginner) 我的脚本使用标准 $c = 0; $t = count($array); while ($c < $t) { $blah = $array[$c]; ++$c
我目前正在尝试使用 array_diff 从数组中删除 1 个值。 代码现在看起来像这样: $item_id = 501; $array = array_diff($user_items, array
这是一个非常简单的问题,但是 PHP 文档没有解释为什么会这样。 我有这个代码: var_dump($newattributes); var_dump($oldattributes); var_dum
我使用下面的代码来获取两个数组的差异。但现在看来,它删除了太多元素,或者我做错了什么。 我希望输出为 array(333, 111),因为元素 111 在第一个数组中出现两次,而在第二个数组中只出现一
我正在寻找一些工具来为我提供两个数组的递归差异。我设想的是一个带有两个颜色编码树结构的网页。在每棵树上,绿色是数组中与两个数组都匹配的部分,红色是每个数组中不匹配的部分。类似于 dBug 的输出 我有
我有以下两个数组和查找 array_diff 的代码: $obs_ws = array("you", "your", "may", "me", "my", "etc"); $all_ws = arra
array_diff() 是如何工作的?它显然不能像下面这样工作: function array_diff($arraya, $arrayb) { $diffs = array();
旧字段(截止) | exceptions | +---------------+ | ryu,moderator | 新字段(账户) | username | +-----------
Array1 是一个关联数组,包含从 MySQL 中获取的多个列表,而 Array2 是一个数值数组,即一个简单的数组。 Array2有list_ids,用来过滤Array1。 Array1 示例:
我有两个数组,var_dump 为其提供以下值: $array1: Artifacts:array(2) { [0]=> array(3) { [0]=> string(7) "module1"
我是一名优秀的程序员,十分优秀!