How can we know the count/number of elements of an array? | PHP

2 ways
a) sizeof($urarray) This function is an alias of count()
b) count($urarray)