mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-03 16:43:03 +00:00
8 lines
139 B
PHP
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>';
|