PHP
HTML
CSS
JavaScript
jQuery
SQL
WordPress
PHP Reference

Quick Reference

The PHP array_reduce() function sends the values in an array to a user-defined function, and returns a string. If the array is empty and initial is not passed, this function returns NULL.

				
					<?php
function my_function($z1, $z2) {
	return $z1 . '<br>' . $z2;
}

$a = array('Lamborghini', 'Ferrari', 'Maserati');
print_r(array_reduce($a, 'my_function'));
?>
				
			

Output

				
					Lamborghini
Ferrari
Maserati
				
			

Syntax

				
					array_reduce(array, my_function, initial)
				
			

Parameters

ParameterDescription
arraySpecifies an array (required)
my_functionSpecifies the name of the function (required)
initialSpecifies the initial value to send to the function

We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.

PHP
HTML
CSS
JavaScript
jQuery
SQL
WordPress

Why 1SMARTchicken?

This site was built and is maintained to benefit my autistic son.
See More →

My Son's Name is Johnny

He was diagnosed as autistic quite late, at age four...
His story

Buy Me a Coffee

Thanks for your support!

Feedback

If you see an error on the page or the code itself is incorrect or incomplete, or just plain wrong, please let us know. We’re always learning. NOTE: we do not sell your information and will not send you spam emails.