123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445 |
- <?php
- /*
- * This file is part of the overtrue/wechat.
- *
- * (c) overtrue <i@overtrue.me>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace App\Libs\TikTok\Kernel\Support;
- /**
- * Array helper from Illuminate\Support\Arr.
- */
- class Arr {
- /**
- * Add an element to an array using "dot" notation if it doesn't exist.
- *
- * @param array $array
- * @param string $key
- * @param mixed $value
- *
- * @return array
- */
- public static function add(array $array, string $key, $value): array {
- if (is_null(static::get($array, $key))) {
- static::set($array, $key, $value);
- }
- return $array;
- }
- /**
- * Cross join the given arrays, returning all possible permutations.
- *
- * @param array ...$arrays
- *
- * @return array
- */
- public static function crossJoin(...$arrays): array {
- $results = [[]];
- foreach ($arrays as $index => $array) {
- $append = [];
- foreach ($results as $product) {
- foreach ($array as $item) {
- $product[$index] = $item;
- $append[] = $product;
- }
- }
- $results = $append;
- }
- return $results;
- }
- /**
- * Divide an array into two arrays. One with keys and the other with values.
- *
- * @param array $array
- *
- * @return array
- */
- public static function divide(array $array): array {
- return [array_keys($array), array_values($array)];
- }
- /**
- * Flatten a multi-dimensional associative array with dots.
- *
- * @param array $array
- * @param string $prepend
- *
- * @return array
- */
- public static function dot(array $array, string $prepend = ''): array {
- $results = [];
- foreach ($array as $key => $value) {
- if (is_array($value) && !empty($value)) {
- $results = array_merge($results, static::dot($value, $prepend . $key . '.'));
- } else {
- $results[$prepend . $key] = $value;
- }
- }
- return $results;
- }
- /**
- * Get all of the given array except for a specified array of items.
- *
- * @param array $array
- * @param array|string $keys
- *
- * @return array
- */
- public static function except(array $array, $keys): array {
- static::forget($array, $keys);
- return $array;
- }
- /**
- * Determine if the given key exists in the provided array.
- *
- * @param array $array
- * @param string|int $key
- *
- * @return bool
- */
- public static function exists(array $array, $key): bool {
- return array_key_exists($key, $array);
- }
- /**
- * Return the first element in an array passing a given truth test.
- *
- * @param array $array
- * @param callable|null $callback
- * @param mixed $default
- *
- * @return mixed
- */
- public static function first(array $array, callable $callback = null, $default = null) {
- if (is_null($callback)) {
- if (empty($array)) {
- return $default;
- }
- foreach ($array as $item) {
- return $item;
- }
- }
- foreach ($array as $key => $value) {
- if ($callback($value, $key)) {
- return $value;
- }
- }
- return $default;
- }
- /**
- * Return the last element in an array passing a given truth test.
- *
- * @param array $array
- * @param callable|null $callback
- * @param mixed $default
- *
- * @return mixed
- */
- public static function last(array $array, callable $callback = null, $default = null) {
- if (is_null($callback)) {
- return empty($array) ? $default : end($array);
- }
- return static::first(array_reverse($array, true), $callback, $default);
- }
- /**
- * Flatten a multi-dimensional array into a single level.
- *
- * @param array $array
- * @param int $depth
- *
- * @return array
- */
- public static function flatten(array $array, int $depth = \PHP_INT_MAX): array {
- return array_reduce($array, static function($result, $item) use ($depth) {
- $item = $item instanceof Collection ? $item->all() : $item;
- if (!is_array($item)) {
- return array_merge($result, [$item]);
- } else if (1 === $depth) {
- return array_merge($result, array_values($item));
- }
- return array_merge($result, static::flatten($item, $depth - 1));
- }, []);
- }
- /**
- * Remove one or many array items from a given array using "dot" notation.
- *
- * @param array $array
- * @param array|string $keys
- */
- public static function forget(array &$array, $keys): void {
- $original = &$array;
- $keys = (array)$keys;
- if (0 === count($keys)) {
- return;
- }
- foreach ($keys as $key) {
- // if the exact key exists in the top-level, remove it
- if (static::exists($array, $key)) {
- unset($array[$key]);
- continue;
- }
- $parts = explode('.', $key);
- // clean up before each pass
- $array = &$original;
- while (count($parts) > 1) {
- $part = array_shift($parts);
- if (isset($array[$part]) && is_array($array[$part])) {
- $array = &$array[$part];
- } else {
- continue 2;
- }
- }
- unset($array[array_shift($parts)]);
- }
- }
- /**
- * Get an item from an array using "dot" notation.
- *
- * @param array $array
- * @param string $key
- * @param mixed $default
- *
- * @return mixed
- */
- public static function get(array $array, string $key, $default = null) {
- if (is_null($key)) {
- return $array;
- }
- if (static::exists($array, $key)) {
- return $array[$key];
- }
- foreach (explode('.', $key) as $segment) {
- if (static::exists($array, $segment)) {
- $array = $array[$segment];
- } else {
- return $default;
- }
- }
- return $array;
- }
- /**
- * Check if an item or items exist in an array using "dot" notation.
- *
- * @param array $array
- * @param string|array $keys
- *
- * @return bool
- */
- public static function has(array $array, $keys): bool {
- if (is_null($keys)) {
- return false;
- }
- $keys = (array)$keys;
- if (empty($array)) {
- return false;
- }
- if ($keys === []) {
- return false;
- }
- foreach ($keys as $key) {
- $subKeyArray = $array;
- if (static::exists($array, $key)) {
- continue;
- }
- foreach (explode('.', $key) as $segment) {
- if (static::exists($subKeyArray, $segment)) {
- $subKeyArray = $subKeyArray[$segment];
- } else {
- return false;
- }
- }
- }
- return true;
- }
- /**
- * Determines if an array is associative.
- *
- * An array is "associative" if it doesn't have sequential numerical keys beginning with zero.
- *
- * @param array $array
- *
- * @return bool
- */
- public static function isAssoc(array $array): bool {
- $keys = array_keys($array);
- return array_keys($keys) !== $keys;
- }
- /**
- * Get a subset of the items from the given array.
- *
- * @param array $array
- * @param array|string $keys
- *
- * @return array
- */
- public static function only(array $array, $keys): array {
- return array_intersect_key($array, array_flip((array)$keys));
- }
- /**
- * Push an item onto the beginning of an array.
- *
- * @param array $array
- * @param mixed $value
- * @param mixed $key
- *
- * @return array
- */
- public static function prepend(array $array, $value, $key = null): array {
- if (is_null($key)) {
- array_unshift($array, $value);
- } else {
- $array = [$key => $value] + $array;
- }
- return $array;
- }
- /**
- * Get a value from the array, and remove it.
- *
- * @param array $array
- * @param string $key
- * @param mixed $default
- *
- * @return mixed
- */
- public static function pull(array &$array, $key, $default = null) {
- $value = static::get($array, $key, $default);
- static::forget($array, $key);
- return $value;
- }
- /**
- * Get a 1 value from an array.
- *
- * @param array $array
- * @param int|null $amount
- *
- * @return mixed
- *
- * @throws \InvalidArgumentException
- */
- public static function random(array $array, int $amount = null) {
- if (is_null($amount)) {
- return $array[array_rand($array)];
- }
- $keys = array_rand($array, $amount);
- $results = [];
- foreach ((array)$keys as $key) {
- $results[] = $array[$key];
- }
- return $results;
- }
- /**
- * Set an array item to a given value using "dot" notation.
- *
- * If no key is given to the method, the entire array will be replaced.
- *
- * @param array $array
- * @param string $key
- * @param mixed $value
- *
- * @return array
- */
- public static function set(array &$array, string $key, $value): array {
- $keys = explode('.', $key);
- while (count($keys) > 1) {
- $key = array_shift($keys);
- // If the key doesn't exist at this depth, we will just create an empty array
- // to hold the next value, allowing us to create the arrays to hold final
- // values at the correct depth. Then we'll keep digging into the array.
- if (!isset($array[$key]) || !is_array($array[$key])) {
- $array[$key] = [];
- }
- $array = &$array[$key];
- }
- $array[array_shift($keys)] = $value;
- return $array;
- }
- /**
- * Filter the array using the given callback.
- *
- * @param array $array
- * @param callable $callback
- *
- * @return array
- */
- public static function where(array $array, callable $callback): array {
- return array_filter($array, $callback, ARRAY_FILTER_USE_BOTH);
- }
- /**
- * If the given value is not an array, wrap it in one.
- *
- * @param mixed $value
- *
- * @return array
- */
- public static function wrap($value): array {
- return !is_array($value) ? [$value] : $value;
- }
- }
|