Descent Framework Standard PHP Functions.
Similar to the Standard PHP Library, this package provides additional PHP functions at the global scope which are used at the core of the Descent Framework.
array_fetch
- resolves a query path based array valuearray_extend
- extends an given array by the provided query path and valuearray_exclude
- removes a value based on the provided query patharray_normalize
- normalizes a array based on query path notationarray_ping
- checks whether a query path exists or notarray_touch
- guarantees that a query path is an array
See Functions.php.
Query paths are notations of a chain of array keys to directly access deep array values in a regular array.
No, you have to normalize those array. There is a function for such
scenarios build in: array_normalize
.
No, all functions do create a copy of the provided array.
encloseCallback
- creates a Closure of a provided callable, automatically usesClosure::fromCallable
when availableencloseCallbackPattern
- callsencloseCallback
after the provided callback pattern (separated by the provided method separator and enhanced by the provided namespace) was converted to a callback.