logo

PHP에서 배열의 모든 요소를 ​​계산하는 방법은 무엇입니까?

배열의 모든 요소를 ​​계산하기 위해 PHP는 count() 및 sizeof() 함수를 제공합니다. count() 및 sizeof() 두 함수는 배열의 모든 요소를 ​​계산하고 빈 배열로 초기화된 변수에 대해 0을 반환하는 데 사용됩니다. 이들은 내장 PHP의 기능. count() 또는 sizeof() 함수를 사용하여 배열에 있는 전체 요소 수를 계산할 수 있습니다.

예를 들어

count() 및 sizeof() 메서드를 모두 사용하여 모든 배열 요소에 대한 프로그램 구현에 대해 논의합니다.

실시예 1 : count()를 사용하여 계산

XML 주석
 

산출

 Number of elements present in the array: 4 

실시예 2

 

산출

 Number of elements present in the array: 8 

실시예 3 : sizeof()를 사용하여 계산

 

산출

 Number of elements present in the array: 6 

실시예 4

json 형식의 예
 

산출

 Number of elements present in the array: 7 

실시예 5 : 2차원 배열을 사용한 예

 array(&apos;cold coffee&apos;, &apos;traffic jam&apos;, &apos;Espresso&apos;, &apos;Americano&apos;), &apos;bevrage&apos; =&gt; array(&apos;spring rolls&apos;, &apos;nuddles&apos;)); echo count($snacks, 1); echo &apos;<br>&apos;; echo sizeof($snacks, 1); ?&gt; 

산출

 8 8