Current Path: > home > codekrsu > > cuddlebuds.lk > wp-content > plugins > woocommerce > src > Internal > > Utilities
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
ArrayUtil.php | File | 2153 bytes | January 06 2025 20:19:28. | |
BlocksUtil.php | File | 2337 bytes | June 23 2025 19:46:28. | |
COTMigrationUtil.php | File | 6182 bytes | May 12 2025 21:07:28. | |
DatabaseUtil.php | File | 16483 bytes | September 23 2024 20:44:04. | |
FilesystemUtil.php | File | 5306 bytes | May 12 2025 15:44:58. | |
HtmlSanitizer.php | File | 3171 bytes | April 30 2024 19:35:34. | |
LegacyRestApiStub.php | File | 6807 bytes | December 18 2024 22:19:16. | |
PluginInstaller.php | File | 14347 bytes | December 18 2024 22:19:16. | |
Types.php | File | 2020 bytes | December 16 2024 15:24:32. | |
URL.php | File | 13419 bytes | December 16 2024 15:24:32. | |
URLException.php | File | 191 bytes | April 20 2022 06:50:54. | |
Users.php | File | 9552 bytes | June 23 2025 19:46:28. | |
WebhookUtil.php | File | 5497 bytes | December 18 2024 22:19:16. |
<?php declare( strict_types=1 ); namespace Automattic\WooCommerce\Internal\Utilities; /** * A class of utilities for dealing with arrays. */ class ArrayUtil { /** * Determines if the given array is a list. * * An array is considered a list if its keys consist of consecutive numbers from 0 to count($array)-1. * * Polyfill for array_is_list() in PHP 8.1. * * @param array $arr The array being evaluated. * * @return bool True if array is a list, false otherwise. */ public static function array_is_list( array $arr ): bool { if ( function_exists( 'array_is_list' ) ) { return array_is_list( $arr ); } if ( ( array() === $arr ) || ( array_values( $arr ) === $arr ) ) { return true; } $next_key = -1; foreach ( $arr as $k => $v ) { if ( ++$next_key !== $k ) { return false; } } return true; } /** * Merge two lists of associative arrays by a key. * * @param array $arr1 The first array. * @param array $arr2 The second array. * @param string $key The key to merge by. * * @return array The merged list sorted by the key values. */ public static function merge_by_key( array $arr1, array $arr2, string $key ): array { $merged = array(); // Overwrite items in $arr1 with items in $arr2 if they have the same key entry value. // The rest of items in $arr1 will be appended. foreach ( $arr1 as $item1 ) { $found = false; foreach ( $arr2 as $item2 ) { if ( $item1[ $key ] === $item2[ $key ] ) { $merged[] = array_merge( $item1, $item2 ); $found = true; break; } } if ( ! $found ) { $merged[] = $item1; } } // Append items from $arr2 that are don't have a corresponding key entry value in $arr1. foreach ( $arr2 as $item2 ) { $found = false; foreach ( $arr1 as $item1 ) { if ( $item1[ $key ] === $item2[ $key ] ) { $found = true; break; } } if ( ! $found ) { $merged[] = $item2; } } // Sort the merged list by the key values. usort( $merged, function ( $a, $b ) use ( $key ) { return $a[ $key ] <=> $b[ $key ]; } ); return array_values( $merged ); } }
SILENT KILLER Tool