Logo

Programming-Idioms

History of Idiom 117 > diff from v24 to v25

Edit summary for version 25 by :
New PHP implementation by user [nvius]

Version 24

2016-02-18, 18:55:55

Version 25

2016-02-19, 21:33:00

Idiom #117 Get list size

Set n to the number of elements of list x.

Idiom #117 Get list size

Set n to the number of elements of list x.

Code
$n = count($x);
Comments bubble
PHP lacks a native list container, using an ordered map it calls an array.
Doc URL
http://php.net/manual/en/function.count.php