952 days continuous production uptime, 40k+ tp/s single node. Original corpo Bitbucket history not included — clean archive commit.
10 lines
125 B
PHP
10 lines
125 B
PHP
<?php
|
|
|
|
$foo = [ 'apple', 'banana', 'cherry' ];
|
|
|
|
$bar = [ 'orange', 'lemon' ];
|
|
|
|
$bar = [...$bar, ...$foo];
|
|
|
|
var_export($bar);
|