append.php
Table of Contents
Functions
- append() : array<string|int, mixed>
- Appends keys/values to the end of an array.
Functions
append()
Appends keys/values to the end of an array.
append(array<string|int, mixed> $array, array<string|int, mixed> $after) : array<string|int, mixed>
Parameters
- $array : array<string|int, mixed>
-
The target array.
- $after : array<string|int, mixed>
-
Keys/values to append.
Tags
Return values
array<string|int, mixed> —The merged array with $after keys last.