Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Where do php count start

// PHP Count (Starts from 1, not 0)
// //////////////////////////////////
$numbers = array(0,1,2);
echo count($numbers); // will echo 3
// //////////////////////////////////
$letters = array('a','b','c','d');
echo count($letters); // will echo 4
 
PREVIOUS NEXT
Tagged: #Where #php #count #start
ADD COMMENT
Topic
Name
7+6 =