Answers for "count array length in php without using function"

PHP
1

calculate array length in php

<?php
  //use count($var) ->
$a[0] = 1;
$a[1] = 3;
$a[2] = 5;
var_dump(count($a));
Posted by: Guest on March-31-2021

Code answers related to "count array length in php without using function"

Browse Popular Code Answers by Language