Logo

Programming-Idioms

History of Idiom 171 > diff from v3 to v4

Edit summary for version 4 by ricardo_sdl:
New PHP implementation by user [ricardo_sdl]

Version 3

2018-08-19, 16:30:13

Version 4

2018-08-23, 17:38:23

Idiom #171 Add an element at the end of a list

Append element x to the list s.

Idiom #171 Add an element at the end of a list

Append element x to the list s.

Extra Keywords
push grow
Extra Keywords
push grow
Code
$l[]=$x;
Comments bubble
$l is an array and $x will be inserted at the end.
Doc URL
https://secure.php.net/manual/en/language.types.array.php
Demo URL
https://3v4l.org/c4XXZ