Recent posts with #tip

PHP Array Unpacking

With array unpacking, you can merge two or more arrays. In some cases, this may be an alternative to the array_merge() function. Since PHP 8.1, you can merge array that have string key.

You can unpack an array using the ... operator.

#php #backend #tip
image

35