Logo

Programming-Idioms

History of Idiom 171 > diff from v10 to v11

Edit summary for version 11 by david:
New PHP implementation by user [david]

Version 10

2019-04-10, 14:42:43

Version 11

2019-09-26, 14:14:21

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
$s[] = $x;