$animals = ['Cat', 'Dog', 'Tiger', 'Lion']; $birds = ['Parrot', 'Sparrow', 'Dove'] $all = array_merge($animals, $birds); print '
'; print_r($all); print '
';
Hello World!