How to use array_reduce() function in php?

array_reduce() Method: As the name suggests, an array_reduce() function reduces the array to a single value by performing the given operation. The array_reduce() applies the callback function to the elements of the array and gives output as a single value.

1. Syntax:

Syntax:

array_reduce(array, myfunction, initial)

Parameters:

    - array: It is the input array that will be reduced to a single value.
    - myfunction: It is a callback function that determines how the array should be reduced.
    - initial: It is an optional value that will be used at the beginning of the process, or as a final result in case the array is empty.

2. Example:

Code:

Output:

21