nette/utils - пхп класс помощник для работы с строками, массивами, датами, джисонами и тд.
Класс для работы с:
Arrays - manipulate arrays
Callback - PHP callbacks
Date and Time - modify times and dates
Filesystem - copying, renaming, …
HTML elements - generate HTML
Images - crop, resize, rotate images
JSON - encoding and decoding
Generating Random Strings
Pagination - comfort pagination
Strings - useful text transpilers
SmartObject - PHP Object Enhancements
Validation - validate inputs
https://github.com/nette/utils
Arrays - manipulate arrays
Callback - PHP callbacks
Date and Time - modify times and dates
Filesystem - copying, renaming, …
HTML elements - generate HTML
Images - crop, resize, rotate images
JSON - encoding and decoding
Generating Random Strings
Pagination - comfort pagination
Strings - useful text transpilers
SmartObject - PHP Object Enhancements
Validation - validate inputs
$array = ['color' => ['favorite' => 'red'], 5];
$value = Arrays::get($array, ['color', 'favorite']);
// returns 'red'
https://github.com/nette/utils