Home > Article > Backend Development > The role of count function in php
PHP’s count function returns the number of elements of an array, string, or object. 1. Array: Returns the number of elements in the array. 2. String: Returns the number of characters in the string. 3. Object: Returns the number of public properties in the object. Syntax: count(arr), where arr is the array, string, or object whose number of elements is to be counted.
The role of count function in PHP
Short answer:
count function returns the number of elements of an array, string, or object.
Detailed expansion:
Array:
String:
Object:
Syntax:
count(arr)
, where arr is the array, string, or object to count the number of elements.
Example:
Array:
<code class="php">$arr = [1, 2, 3, 4, 5]; $element_count = count($arr); // 输出:5</code>
String:
<code class="php">$str = "Hello World"; $char_count = count($str); // 输出:11</code>
Object:
<code class="php">class MyClass { public $property1; public $property2; } $object = new MyClass(); $property_count = count($object); // 输出:2</code>
Note: The
The above is the detailed content of The role of count function in php. For more information, please follow other related articles on the PHP Chinese website!