From 1b4e3c01b76995b218d176533fbe56f3f7d18ae9 Mon Sep 17 00:00:00 2001 From: Imam Wahyudi Date: Thu, 21 Mar 2019 20:29:10 +0700 Subject: [PATCH] Get The Length of an Array - The count() Function (#30983) --- guide/english/php/arrays/index.md | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/guide/english/php/arrays/index.md b/guide/english/php/arrays/index.md index 4b9c69f3b2..a0985cf162 100644 --- a/guide/english/php/arrays/index.md +++ b/guide/english/php/arrays/index.md @@ -11,7 +11,7 @@ In PHP, there are two types of arrays: Indexed arrays and Associative arrays. Ea ### Indexed Array Example An indexed array is a list of ordered values. Each of these values in the array is assigned an index number. Indexes for arrays always start at `0` for the first value and then increase by one from there. -```PHP +```php 83, "Frank" => "93", "Benji" => "90"); ``` @@ -28,7 +28,7 @@ $student_scores = array("Joe" => 83, "Frank" => "93", "Benji" => "90"); ### Multidimensional Array Example A multidimensional array is an array that contains other arrays. This lets you create complex data structures that can model a very complex group of data. -```PHP +```php +``` + #### More Information: -* php.net arrays manual +* php.net arrays manual \ No newline at end of file