...

/

Function Composition in PHP

Function Composition in PHP

Learn about function composition and its various styles.

Function composition

The practice of chaining function calls, or composition, is common in functional programming. In fact, the spirit of functional programming is composition. A function chain is a nest of functions and, like any series, follows a linear chronology. In a function chain, the output of one function serves as input for the next. This concept is rooted in mathematics, where two functions, f(x)f(x) ...