php 在laravel中比较两个集合数组

ocebsuys  于 2024-01-05  发布在  PHP
关注(0)|答案(6)|浏览(291)

我正在使用laravel,我有两个集合数组,看起来像这样:

  1. $collection1 = [
  2. ['id' => 1, 'name'=> 'phone', 'quantity' => 1, 'price' => 1200],
  3. ['id' => 2, 'name'=> 'tv', 'quantity' => 3, 'price' => 800],
  4. ];
  5. $collection2 = [
  6. ['id' => 1, 'name'=> 'phone', 'quantity' => 1, 'price' => 1200],
  7. ['id' => 2, 'name'=> 'tv', 'quantity' => 3, 'price' => 400],
  8. ];

字符串
所以我需要知道它们是否相同,比较两个集合。如果在一些数组中,其中一个键(或几个)具有不同的值,那么它们将不再是相同的集合,例如在一个集合中,第二个项目的价格具有800的值,而另一个集合的价格为400。如何用PHP数组实现这一点?

5f0d552i

5f0d552i1#

laravel集合有一个叫做diff的方法,使用这个方法你可以获取集合中不存在于给定项目中的项目。项目是$collection2,它可以是一个数组或一个集合,所以你可以像这样在这两个集合之间获取不同的项目。

  1. $collection1->diff($collection2);

字符串
它返回一个Illuminate\Support\Escort类。你可以通过调用all()来获取这些项:

  1. $collection = collect([1, 2, 3, 4, 5]);
  2. $differentItems = $collection->diff([2, 4, 6, 8]);
  3. $differentItems->all();
  4. // [1, 3, 5]


这段代码属于laravel docs. https://laravel.com/docs/7.x/collections#method-diff.在最后你可以把$differentItems转换为boolean.像这样:

  1. $collection = collect([1, 2, 3, 4, 5]);
  2. $differentItems = $collection->diff([2, 4, 6, 8]);
  3. $differentItems->isEmpty();
  4. // return false
  5. $collection = collect([1, 2, 3, 4, 5]);
  6. $differentItems = $collection->diff($collection);
  7. $differentItems->isEmpty();
  8. // return true


更多链接https://laravel.com/api/7.x/Illuminate/Support/Collection.html#method_diff https://laravel.com/api/7.x/Illuminate/Support/Enumerable.html

展开查看全部
2hh7jdfx

2hh7jdfx2#

所以首先序列化每个元素,然后进行比较。

  1. $serialize1 = $collection1->map(function ($item) {
  2. return serialize($item);
  3. });
  4. $serialize2 = $collection2->map(function ($item) {
  5. return serialize($item);
  6. });
  7. dd($serialize1->diff($serialize2)->isEmpty());

字符串

7hiiyaii

7hiiyaii3#

遵循比较函数:

  1. function compareCollections($c1, $c2) {
  2. // If the colletions have different sizes we return false:
  3. if (count($c1) != count($c2)) {
  4. return false;
  5. }
  6. // The collections have the same size, we check element by element:
  7. foreach($c1 as $item) {
  8. // We find the current element in $c1 in $c2:
  9. $itemToCompare = array_filter($c2, function ($compareItem) use ($item) {
  10. return ($compareItem['id'] == $item['id']);
  11. });
  12. // If we did not find the element in $c2, the collections are different:
  13. if (empty($itemToCompare)) {
  14. return false;
  15. }
  16. $itemToCompare = current($itemToCompare);
  17. // We now use PHP to check the element keys:
  18. $diff = array_diff_key($item, $itemToCompare);
  19. // If there is a different, return false:
  20. if (!empty($diff)) {
  21. return false;
  22. }
  23. }
  24. // If everything is ok until here, the collections are the same:
  25. return true;
  26. }

字符串
还有一个测试:

  1. $collection1 = [
  2. ['id' => 1, 'name'=> 'phone', 'quantity' => 1, 'price' => 1200],
  3. ['id' => 2, 'name'=> 'tv', 'quantity' => 3, 'price' => 800],
  4. ];
  5. $collection2 = [
  6. ['id' => 1, 'name'=> 'phone', 'quantity' => 1, 'price' => 1200],
  7. ['id' => 2, 'name'=> 'tv', 'quantity' => 3, 'price' => 400],
  8. ];
  9. $collection3 = [
  10. ['id' => 1, 'name'=> 'tv', 'quantity' => 1, 'price' => 1200],
  11. ['id' => 2, 'name'=> 'tv', 'quantity' => 3],
  12. ];
  13. var_dump(compareCollections($collection1, $collection2)); // true
  14. var_dump(compareCollections($collection1, $collection3)); // false

展开查看全部
0vvn1miw

0vvn1miw4#

据我所知,因为你的集合项是数组,所以没有简单的Laravel原生方法来做到这一点,你应该写一个函数来比较它们:
所以,假设,你有:

  1. $collection1 = collectt([
  2. ['id' => 1, 'name'=> 'phone', 'quantity' => 1, 'price' => 1200],
  3. ['id' => 2, 'name'=> 'tv', 'quantity' => 3, 'price' => 800],
  4. ]);
  5. $collection2 = collect([
  6. ['id' => 1, 'name'=> 'phone', 'quantity' => 1, 'price' => 1200],
  7. ['id' => 2, 'name'=> 'tv', 'quantity' => 3, 'price' => 400],
  8. ]);

字符串
例如,您可以通过以下方式比较它们:

  1. private function collectionsAreEqual($collection1, $collection2)
  2. {
  3. if ($collection1->count() != $collection2->count()) {
  4. return false;
  5. }
  6. //assuming that, from each id, you don't have more that one item:
  7. $collection2 = $collection2->keyBy('id');
  8. foreach ($collection1->keyBy('id') as $id => $item) {
  9. if (!isset($collection2[$id])) {
  10. return false;
  11. }
  12. //your items in the collection are key value arrays
  13. // and can compare them with == operator
  14. if ($collection2[$id] != $item) {
  15. return false;
  16. }
  17. }
  18. return true;
  19. }
  20. dd(collectionsAreEqual($collection1, $collection2));

展开查看全部
eiee3dmh

eiee3dmh5#

此方法仅在两个集合具有相同的键顺序时有效。
默认情况下,Laravel有一个diffAsk方法,它实际上是比较集合中的单个元素。如果你想比较两个集合数组,那么你必须创建自己的解决方案。
下面是我的解决方案,我创建(或者你可以说扩展)一个集合方法。
首先我Map每个元素并序列化,然后对另一个集合做同样的操作。通过使用diffAsynchronous方法获得差异并反序列化最终输出。

  • AppServiceProvider.php*
  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Support\Collection;
  4. use Illuminate\Support\ServiceProvider;
  5. class AppServiceProvider extends ServiceProvider
  6. {
  7. /**
  8. * Register any application services.
  9. *
  10. * @return void
  11. */
  12. public function register()
  13. {
  14. //
  15. }
  16. /**
  17. * Bootstrap any application services.
  18. *
  19. * @return void
  20. */
  21. public function boot()
  22. {
  23. Collection::macro('diffAssocMultiple', function ($anotherCollection) {
  24. /* @var $this Collection */
  25. return $this->map(function($arr) {
  26. return serialize($arr);
  27. })->diffAssoc($anotherCollection->map(function($arr) {
  28. return serialize($arr);
  29. }))->map(function($arr) {
  30. return unserialize($arr);
  31. });
  32. });
  33. }
  34. }

字符串
使用

  1. $diff = $collectionOne->diffAssocMultiple($collectionTwo);


请注意,这个新方法返回另一个集合(非零基)。并且它没有diffAsk所具有的“all()”方法。如果你想要一个零基索引数组,那么使用values函数沿着。

  1. $diff = $collectionOne->diffAssocMultiple($collectionTwo)->values();

展开查看全部
lc8prwob

lc8prwob6#

我最后只是比较了toJson()的集合的输出,我不能说这在性能上有多差,但对我的情况(单元测试)来说还不错。

相关问题