Voting

: seven plus zero?
(Example: nine)

The Note You're Voting On

Anonymous
9 years ago
Proper simplistic example:

<?php

$Array1
= [1, 2];
$Array2 = [3, 4];

echo
implode("<br>", array_merge_recursive($Array1, $Array2));

?>

Output:
1
2
3
4

<< Back to user notes page

To Top