Logo

Programming-Idioms

History of Idiom 171 > diff from v5 to v6

Edit summary for version 6 by programming-idioms.org:
[PHP] Variable name s

Version 5

2018-08-30, 19:42:41

Version 6

2018-09-06, 19:56:39

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;
Code
$s[]=$x;
Comments bubble
$l is an array and $x will be inserted at the end.
Comments bubble
$s is an array and $x will be inserted at the end.
Doc URL
https://secure.php.net/manual/en/language.types.array.php
Doc URL
https://secure.php.net/manual/en/language.types.array.php
Demo URL
https://3v4l.org/c4XXZ
Demo URL
https://3v4l.org/c4XXZ