Files
php_8/arrays/array_merge.php
2022-04-18 08:53:24 +03:00

8 lines
139 B
PHP

<?php
$fst = ['one', 'two'];
$snd = ['three', 'four', 'five'];
$sum = array_merge($fst, $snd);
echo '<pre>';
print_r($sum);
echo '</pre>';