Answers for "size of the array in php"

PHP
30

php length of array

<?php
	$arr = ["one", "two", "three", "four"];
	echo count($arr);
  ?>
Posted by: Guest on December-29-2019
0

how to get length of object in php

$total = count((array)$obj);
Posted by: Guest on November-23-2020

Browse Popular Code Answers by Language