table length
This function returns the number of rows
Indirect parameter passing is disabled
1
No. | Type | Description |
---|---|---|
1 input |
string | name of table |
Type | Description |
---|---|
numeral | Table length Number of rows |
Table not found
table initialize ( table 1,
{ { Animal, leg count }, { Worm, 0}, { Bird, 2 }, { Dog, 4 }, { Fly, 6 }, { Tick, 8 } } );
echo( table length( table 1 ) );
table create ( table 2 );
[ table 2: 0, 10 ] = Hi; // Note: row counting begins with zero
echo( table length( table 2 ) );
6
11