1. Go to this page and download the library: Download vk-php-utils/chain library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
vk-php-utils / chain example snippets
use VKPHPUtils\Chain\Chain;
// Constructors
Chain::of(...$items): Chain // Initialize mutable chain
Chain::immutable(...$items): Chain // Initialize immutable chain
// API
toArray(): array; // Converts the chain to array (applies all chain-functions)
toChain(): Chain; // Useful with mutable chain. Returns new chain with all current chain functions applied
hasKey($key): bool // Check exists the key in current chain or no
hasValue($value): bool; // Check existence of the value in the chain
search($value) // Searches position (key) of the value in current chain. Returns null if the value not found
getValue($key) // Get value using key
setValue($key, $value): Chain; // Set value using key
remove($key): Chain; // Removes element with index eq to $key
isEmpty(): bool // Check is the chain empty
size(): int // Get the chain size (number of elements)
count(): int // Get the chain size (number of elements)
append($any): Chain; // Appends value into the chain
prepend($any): Chain; // Prepend value into the chain
// map/reduce methods
filter(?callable $fn = null): Chain // Filter the chain using function $fn
map(callable $fn): Chain; // Applies function $fn to each chain item and returns chain with mapped entities. Index-safe operation
flatMap(callable $fn): Chain; // Works like {@see map()} but returns iterable set of mapped objects per each the chain's item
reduce(callable $fn, $initialValue = null) // Calculate aggregate function result
// keys/values
keys(): Chain; // Get keys of the chain
values(): Chain; // Get chain values
// chain methods
diff(...$elements): Chain; // Calculates diff between current chain and passed one
merge(...$elements): Chain; // Merges all elements with current chain
intersect(...$elements): Chain; // Calculates intersection of two sets (current chain and passed one). Non index-safe operation
intersectKeepIndexes(...$elements): Chain; // Calculates intersection of two sets (current chain and passed one). Index-safe operation
frequencyAnalysis(): Chain; // Created histogram/frequency analysis of the chain
flip(): Chain; // Flip the chain
mix(): Chain; // Mixes the chain
reverse(bool $saveIndex = false): Chain; // Reverse current chain
unique(bool $saveIndex = false): Chain; // Unique items of current chain
slice(int $startIncluded, int $stopExcluded, int $step = 1, bool $saveIndex = false): Chain; // Get chain's chunk
forEach(callable $fn): Chain; // Just calls $fn for each chain element
// sort methods
sortKeys(?callable $sortFn = null, ?int $direction = SORT_ASC, ?int $sortFlags = null): Chain; // Sorts chain by keys
sortValues(?callable $sortFn = null, ?int $direction = SORT_ASC, ?int $sortFlags = SORT_REGULAR): Chain; // Sorts chain by values. Index-safe operation
sortByProperty(string $propertyName, int $direction = SORT_ASC): Chain; // Sorts collection by given property
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.