123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531 |
- <?php
- declare(strict_types=1);
- namespace Yansongda\Supports;
- use ArrayAccess;
- use ArrayIterator;
- use Countable;
- use IteratorAggregate;
- use JsonSerializable;
- use Yansongda\Supports\Traits\Accessable;
- use Yansongda\Supports\Traits\Arrayable;
- use Yansongda\Supports\Traits\Serializable;
- class Collection implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
- {
- use Serializable;
- use Accessable;
- use Arrayable;
- /**
- * The collection data.
- */
- protected array $items = [];
- /**
- * set data.
- *
- * @param mixed $items
- */
- public function __construct($items = [])
- {
- foreach ($this->getArrayableItems($items) as $key => $value) {
- $this->set($key, $value);
- }
- }
- /**
- * Wrap the given value in a collection if applicable.
- *
- * @param mixed $value
- */
- public static function wrap($value): self
- {
- return $value instanceof self ? new static($value) : new static(Arr::wrap($value));
- }
- /**
- * Get the underlying items from the given collection if applicable.
- *
- * @param array|static $value
- */
- public static function unwrap($value): array
- {
- return $value instanceof self ? $value->all() : $value;
- }
- /**
- * Return all items.
- */
- public function all(): array
- {
- return $this->items;
- }
- /**
- * Return specific items.
- */
- public function only(array $keys): array
- {
- $return = [];
- foreach ($keys as $key) {
- $value = $this->get($key);
- if (!is_null($value)) {
- $return[$key] = $value;
- }
- }
- return $return;
- }
- /**
- * Get all items except for those with the specified keys.
- *
- * @param mixed $keys
- */
- public function except($keys): self
- {
- $keys = is_array($keys) ? $keys : func_get_args();
- return new static(Arr::except($this->items, $keys));
- }
- /**
- * Run a filter over each of the items.
- */
- public function filter(callable $callback = null): self
- {
- if ($callback) {
- return new static(Arr::where($this->items, $callback));
- }
- return new static(array_filter($this->items));
- }
- /**
- * Merge the collection with the given items.
- *
- * @param mixed $items
- */
- public function merge($items): self
- {
- return new static(array_merge($this->items, $this->getArrayableItems($items)));
- }
- /**
- * To determine Whether the specified element exists.
- *
- * @param string|int $key
- */
- public function has($key): bool
- {
- return !is_null(Arr::get($this->items, $key));
- }
- /**
- * Retrieve the first item.
- *
- * @return mixed
- */
- public function first()
- {
- return reset($this->items);
- }
- /**
- * Retrieve the last item.
- *
- * @return mixed
- */
- public function last()
- {
- $end = end($this->items);
- reset($this->items);
- return $end;
- }
- /**
- * add the item value.
- *
- * @param string|int|null $key
- * @param mixed $value
- */
- public function add($key, $value): void
- {
- Arr::set($this->items, $key, $value);
- }
- /**
- * Set the item value.
- *
- * @param string|int|null $key
- * @param mixed $value
- */
- public function set($key, $value): void
- {
- Arr::set($this->items, $key, $value);
- }
- /**
- * Retrieve item from Collection.
- *
- * @param string|int|null $key
- * @param mixed $default
- *
- * @return mixed
- */
- public function get($key = null, $default = null)
- {
- return Arr::get($this->items, $key, $default);
- }
- /**
- * Remove item form Collection.
- *
- * @param string|int $key
- */
- public function forget($key): void
- {
- Arr::forget($this->items, $key);
- }
- /**
- * Get a flattened array of the items in the collection.
- *
- * @param float|int $depth
- */
- public function flatten($depth = INF): self
- {
- return new static(Arr::flatten($this->items, $depth));
- }
- /**
- * Run a map over each of the items.
- */
- public function map(callable $callback): self
- {
- $keys = array_keys($this->items);
- $items = array_map($callback, $this->items, $keys);
- return new static(array_combine($keys, $items));
- }
- /**
- * Get and remove the last item from the collection.
- *
- * @return mixed
- */
- public function pop()
- {
- return array_pop($this->items);
- }
- /**
- * Push an item onto the beginning of the collection.
- *
- * @param mixed|null $key
- * @param mixed $value
- */
- public function prepend($value, $key = null): self
- {
- $this->items = Arr::prepend($this->items, $value, $key);
- return $this;
- }
- /**
- * Push an item onto the end of the collection.
- *
- * @param mixed $value
- */
- public function push($value): self
- {
- $this->offsetSet(null, $value);
- return $this;
- }
- /**
- * Get and remove an item from the collection.
- *
- * @param mixed $default
- * @param mixed $key
- *
- * @return mixed
- */
- public function pull($key, $default = null)
- {
- return Arr::pull($this->items, $key, $default);
- }
- /**
- * Put an item in the collection by key.
- *
- * @param mixed $key
- * @param mixed $value
- */
- public function put($key, $value): self
- {
- $this->offsetSet($key, $value);
- return $this;
- }
- /**
- * Get one or a specified number of items randomly from the collection.
- *
- * @throws \InvalidArgumentException
- */
- public function random(?int $number = null): self
- {
- return new static(Arr::random($this->items, $number ?? 1));
- }
- /**
- * Reduce the collection to a single value.
- *
- * @param mixed|null $initial
- */
- public function reduce(callable $callback, $initial = null)
- {
- return array_reduce($this->items, $callback, $initial);
- }
- /**
- * Reset the keys on the underlying array.
- */
- public function values(): self
- {
- return new static(array_values($this->items));
- }
- /**
- * Determine if all items in the collection pass the given test.
- *
- * @param callable|string $key
- */
- public function every($key): bool
- {
- $callback = $this->valueRetriever($key);
- foreach ($this->items as $k => $v) {
- if (!$callback($v, $k)) {
- return false;
- }
- }
- return true;
- }
- /**
- * Chunk the underlying collection array.
- */
- public function chunk(int $size): self
- {
- if ($size <= 0) {
- return new static();
- }
- $chunks = [];
- foreach (array_chunk($this->items, $size, true) as $chunk) {
- $chunks[] = new static($chunk);
- }
- return new static($chunks);
- }
- /**
- * Sort through each item with a callback.
- */
- public function sort(callable $callback = null): self
- {
- $items = $this->items;
- $callback ? uasort($items, $callback) : asort($items);
- return new static($items);
- }
- /**
- * Sort the collection using the given callback.
- *
- * @param callable|string $callback
- */
- public function sortBy($callback, int $options = SORT_REGULAR, bool $descending = false): self
- {
- $results = [];
- $callback = $this->valueRetriever($callback);
- // First we will loop through the items and get the comparator from a callback
- // function which we were given. Then, we will sort the returned values and
- // and grab the corresponding values for the sorted keys from this array.
- foreach ($this->items as $key => $value) {
- $results[$key] = $callback($value, $key);
- }
- $descending ? arsort($results, $options) : asort($results, $options);
- // Once we have sorted all of the keys in the array, we will loop through them
- // and grab the corresponding model so we can set the underlying items list
- // to the sorted version. Then we'll just return the collection instance.
- foreach (array_keys($results) as $key) {
- $results[$key] = $this->items[$key];
- }
- return new static($results);
- }
- /**
- * Sort the collection in descending order using the given callback.
- *
- * @param callable|string $callback
- */
- public function sortByDesc($callback, int $options = SORT_REGULAR): self
- {
- return $this->sortBy($callback, $options, true);
- }
- /**
- * Sort the collection keys.
- */
- public function sortKeys(int $options = SORT_REGULAR, bool $descending = false): self
- {
- $items = $this->items;
- $descending ? krsort($items, $options) : ksort($items, $options);
- return new static($items);
- }
- /**
- * Sort the collection keys in descending order.
- */
- public function sortKeysDesc(int $options = SORT_REGULAR): self
- {
- return $this->sortKeys($options, true);
- }
- public function query(int $encodingType = PHP_QUERY_RFC1738): string
- {
- return Arr::query($this->all(), $encodingType);
- }
- public function toString(string $separator = '&'): string
- {
- return Arr::toString($this->all(), $separator);
- }
- /**
- * Build to array.
- */
- public function toArray(): array
- {
- return $this->all();
- }
- /**
- * Build to json.
- */
- public function toJson(int $option = JSON_UNESCAPED_UNICODE): string
- {
- return json_encode($this->all(), $option);
- }
- /**
- * (PHP 5 >= 5.0.0)<br/>
- * Retrieve an external iterator.
- *
- * @see http://php.net/manual/en/iteratoraggregate.getiterator.php
- *
- * @return ArrayIterator An instance of an object implementing <b>Iterator</b> or
- * <b>ArrayIterator</b>
- */
- #[\ReturnTypeWillChange]
- public function getIterator()
- {
- return new ArrayIterator($this->items);
- }
- /**
- * (PHP 5 >= 5.1.0)<br/>
- * Count elements of an object.
- *
- * @see http://php.net/manual/en/countable.count.php
- *
- * @return int The custom count as an integer.
- * </p>
- * <p>
- * The return value is cast to an integer
- */
- #[\ReturnTypeWillChange]
- public function count()
- {
- return count($this->items);
- }
- /**
- * (PHP 5 >= 5.0.0)<br/>
- * Offset to unset.
- *
- * @see http://php.net/manual/en/arrayaccess.offsetunset.php
- *
- * @param mixed $offset <p>
- * The offset to unset.
- * </p>
- */
- #[\ReturnTypeWillChange]
- public function offsetUnset($offset)
- {
- if ($this->offsetExists($offset)) {
- $this->forget($offset);
- }
- }
- /**
- * Determine if the given value is callable, but not a string.
- *
- * @param mixed $value
- */
- protected function useAsCallable($value): bool
- {
- return !is_string($value) && is_callable($value);
- }
- /**
- * Get a value retrieving callback.
- *
- * @param mixed $value
- */
- protected function valueRetriever($value): callable
- {
- if ($this->useAsCallable($value)) {
- return $value;
- }
- return function ($item) use ($value) {
- return data_get($item, $value);
- };
- }
- /**
- * Results array of items from Collection or Arrayable.
- *
- * @param mixed $items
- */
- protected function getArrayableItems($items): array
- {
- if (is_array($items)) {
- return $items;
- }
- if ($items instanceof self) {
- return $items->all();
- }
- if ($items instanceof JsonSerializable) {
- return $items->jsonSerialize();
- }
- return (array) $items;
- }
- }
|