Hướng dẫn array php w3schools


An array stores multiple values in one single variable:

Example

$cars = array("Volvo", "BMW", "Toyota");
echo "I like " . $cars[0] . ", " . $cars[1] . " and " . $cars[2] . ".";
?>

Try it Yourself »


What is an Array?

An array is a special variable, which can hold more than one value at a time.

If you have a list of items (a list of car names, for example), storing the cars in single variables could look like this:

$cars1 = "Volvo";
$cars2 = "BMW";
$cars3 = "Toyota";

However, what if you want to loop through the cars and find a specific one? And what if you had not 3 cars, but 300?

The solution is to create an array!

An array can hold many values under a single name, and you can access the values by referring to an index number.


Create an Array in PHP

In PHP, the array() function is used to create an array:

In PHP, there are three types of arrays:

  • Indexed arrays - Arrays with a numeric index
  • Associative arrays - Arrays with named keys
  • Multidimensional arrays - Arrays containing one or more arrays


Get The Length of an Array - The count() Function

The count() function is used to return the length (the number of elements) of an array:

Example

$cars = array("Volvo", "BMW", "Toyota");
echo count($cars);
?>

Try it Yourself »


Complete PHP Array Reference

For a complete reference of all array functions, go to our complete PHP Array Reference.

The reference contains a brief description, and examples of use, for each function!


PHP Exercises



❮ PHP Array Reference

Example

Create an indexed array named $cars, assign three elements to it, and then print a text containing the array values:

$cars=array("Volvo","BMW","Toyota");
echo "I like " . $cars[0] . ", " . $cars[1] . " and " . $cars[2] . ".";
?>

Try it Yourself »


Definition and Usage

The array() function is used to create an array.

In PHP, there are three types of arrays:

  • Indexed arrays - Arrays with numeric index
  • Associative arrays - Arrays with named keys
  • Multidimensional arrays - Arrays containing one or more arrays

Syntax

Syntax for indexed arrays:

array(value1, value2, value3, etc.)

Syntax for associative arrays: 

array(key=>value,key=>value,key=>value,etc.)

Parameter Values

ParameterDescription
key Specifies the key (numeric or string)
value Specifies the value

Technical Details

Return Value:Returns an array of the parameters
PHP Version:4+
Changelog:As of PHP 5.4, it is possible to use a short array syntax, which replaces array() with [].
E.g. $cars=["Volvo","BMW"]; instead of $cars=array("Volvo","BMW");


More Examples

Example

Create an associative array named $age:

$age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43");
echo "Peter is " . $age['Peter'] . " years old.";
?>

Try it Yourself »

Example

Loop through and print all the values of an indexed array:

$cars=array("Volvo","BMW","Toyota");
$arrlength=count($cars);

for($x=0;$x<$arrlength;$x++)
  {
  echo $cars[$x];
  echo "
";
  }
?>

Try it Yourself »

Example

Loop through and print all the values of an associative array:

$age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43");

foreach($age as $x=>$x_value)
  {
  echo "Key=" . $x . ", Value=" . $x_value;
  echo "
";
  }
?>

Try it Yourself »

Example

Create a multidimensional array:

// A two-dimensional array:
$cars=array
  (
  array("Volvo",100,96),
  array("BMW",60,59),
  array("Toyota",110,100)
  );
?>

Try it Yourself »


❮ PHP Array Reference


Hướng dẫn array php w3schools

Hướng dẫn dùng injs JavaScript

Hiện nay, JavaScript là một ngôn ngữ đang được nhiều bạn trẻ quan tâm nhiều trong những năm gần đây. Vậy JavaScript là gì? Và việc Tất cả sẽ có đầy ...

Hướng dẫn array php w3schools

Hướng dẫn dùng value 1 trong PHP

Điểm hấp dẫn nhất của PHP theo mình là Array, và hầu như trong code, mọi thứ đều là key => value. Do vậy mà bạn biết thêm những hàm built-in rẳng của PHP, ...

Hướng dẫn array php w3schools

Tạo thông báo trong php

Home » CodeAlert php được sử dụng trong trang web để hiển thị thông báo cảnh báo cho người dùng rằng họ đã nhập sai giá trị khác với giá trị được yêu ...

Hướng dẫn array php w3schools

Hướng dẫn php oop form submit

Làm việc với form trong php gồm các vấn đề: sử dụng $_GET, $_POST ; hiện lại giá trị ; kiểm tra dữ liệu và hiện lỗi ; xử lý file upload; ứng dụng của ...

Hướng dẫn array php w3schools

Hướng dẫn focus css

Trang chủTham khảoCSS:focusĐịnh nghĩa và sử dụng:focus thành phần sẽ focus khi được chọn.Cấu trúctag:focus { property: value; }Ví dụHTML viết:

Hướng dẫn array php w3schools

Hướng dẫn dùng array object trong PHP

1. Mảng là gì? Mảng trong PHP là gì?Mảng (Array) trong PHP là một biến sử dụng để lưu trữ các giá trị, dữ liệu liên quan. Bạn cứ tưởng tưởng một ...

Hướng dẫn array php w3schools

Hướng dẫn php instantiate class

Vietnamese (Tiếng Việt) translation by Andrea Ho (you can also view the original English article) Trong bài viết này, chúng ta sẽ tìm hiểu những điều cơ bản về lập trình ...

Hướng dẫn array php w3schools

Hướng dẫn dùng pho course trong PHP

Giới thiệuXin chào các bạn, mình thì chủ yếu lập trình web bằng PHP thôi, nhưng dạo gần đây mình tự dưng phải học Go =)) Vâng, cái tên Go chắc hẳn cũng khá ...

Hướng dẫn array php w3schools

Hướng dẫn find in string php

(PHP 4, PHP 5, PHP 7, PHP 8)strpos — Find the position of the first occurrence of a substring in a stringDescriptionstrpos(string $haystack, string $needle, int $offset = 0): int|falseParameters ...

Hướng dẫn array php w3schools

Hướng dẫn split in php

Cú phápCú pháp của hàm split() trong PHP là:array split (string pattern, string string [, int limit]) Định nghĩa và cách sử dụngHàm split() trong PHP phân chia một chuỗi ...

Hướng dẫn array php w3schools

Hướng dẫn python variables pynative

❮ Previous Next ❯Nội dung chínhTest Yourself With ExercisesPython Variable ExercisesPython Variables (A fundamental concept of coding)Used Where?Advanced Concepts (Optional)Test Yourself With ...

Hướng dẫn array php w3schools

Hướng dẫn remainder in python example

Introduction to Python Remainder OperatorPython remainder operators are used for the computation of some operands. Operators are special symbols that are used on operands to do some operation ...

Hướng dẫn array php w3schools

Hướng dẫn dùng creating objects trong PHP

Vietnamese (Tiếng Việt) translation by Andrea Ho (you can also view the original English article) Nội dung chínhLập trình hướng đối tượng (OOP) là gì?Class trong PHP là ...

Hướng dẫn array php w3schools

Hướng dẫn dùng sqlite db trong PHP

Cài đặtPHP 5.3.0 kích hoạt SQLite3 Extension theo mặc định. Để vô hiệu hóa nó, bạn sử dụng --without-sqlite3 tại compile time.Người dùng Windows phải kích hoạt ...

Hướng dẫn array php w3schools

Hướng dẫn dùng an object trong PHP

Vietnamese (Tiếng Việt) translation by Andrea Ho (you can also view the original English article) Trong bài viết này, chúng ta sẽ tìm hiểu những điều cơ bản về lập trình ...

Hướng dẫn array php w3schools

Hướng dẫn dùng obkect trong PHP

Vietnamese (Tiếng Việt) translation by Andrea Ho (you can also view the original English article) Trong bài viết này, chúng ta sẽ tìm hiểu những điều cơ bản về lập trình ...

Hướng dẫn array php w3schools

How do i open a php file in html?

In this article, Ill show you how to use PHP code in your HTML pages. It’s aimed at PHP beginners who are trying to strengthen their grip on the worlds most popular server-side scripting ...

Hướng dẫn array php w3schools

Hướng dẫn dùng repalce trong PHP

Cú phápCú pháp: str_replace[$search, $replace, $subject];Bài viết này được đăng tại freetuts.net, không được copy dưới mọi hình thức.Trong đó:$search là kí tự, ...

Hướng dẫn array php w3schools

Hướng dẫn dùng for-each loop trong PHP

Nội dungVòng lặp Foreach PHP hoạt động như thế nàoCú pháp hàm Foreach Array PHPNguyên tắc hoạt động của Vòng lặp Foreach PHPLưu đồ Vòng lặp PHP ForeachCác ví ...

Hướng dẫn array php w3schools

Hướng dẫn dùng array_contains trong PHP

Nội dung chính2. Mảng là gì? Mảng trong PHP là gì?2. Mảng chỉ số (Numeric Array) trong PHP3. Mảng kết hợp (Associative Array) trong PHP4. Mảng đa chiều trong PHP5. Sử ...

Hướng dẫn array php w3schools

Hướng dẫn dùng object.keys JavaScript

Khi làm việc với object trong Javascript, đôi khi chúng ta cần lấy các key/value để sử dụng với mục đích như so sánh, hiển thị,... Làm thế nào để lấy các ...

Hướng dẫn array php w3schools

Hướng dẫn array php w3schools

Hướng dẫn array php w3schools

Hướng dẫn dùng addeventlistner JavaScript

Trong bài này chúng ta sẽ tìm hiểu cách sử dụng addEventListener trong Javascript, qua đó sẽ giúp bạn hiểu ý nghĩa của hàm addEventListener và cách dùng nó để thêm ...

Hướng dẫn array php w3schools

Hướng dẫn dùng extract 意味 trong PHP

Information may be passed to functions via the argument list, which is a comma-delimited list of expressions. The arguments are evaluated from left to right, before the function is actually called ...

Hướng dẫn array php w3schools

Hướng dẫn làm quen với javascript

Nhóm phát triển của chúng tôi vừa ra mắt website langlearning.net học tiếng Anh, Nga, Đức, Pháp, Việt, Trung, Hàn, Nhật, ... miễn phí cho tất cả mọi người. Là ...

Hướng dẫn array php w3schools

Hướng dẫn dùng easter days trong PHP

(PHP 4, PHP 5, PHP 7, PHP 8)easter_date — Get Unix timestamp for midnight on Easter of a given yearDescriptioneaster_date(?int $year = null, int $mode = CAL_EASTER_DEFAULT): intWarning This ...

Hướng dẫn array php w3schools

Hướng dẫn dùng scheme stream trong PHP

Streams là các tài nguyên được cung cấp bởi PHP mà chúng ta ít để ý đến. Streams có thể được dùng như là công cụ rất mạnh mẽ và bằng cách khai thác sức ...

Hướng dẫn array php w3schools

Hướng dẫn array php w3schools

Hướng dẫn dùng object connecté trong PHP

Vietnamese (Tiếng Việt) translation by Andrea Ho (you can also view the original English article) Trong bài viết này, chúng ta sẽ tìm hiểu những điều cơ bản về lập trình ...

Hướng dẫn array php w3schools

Hướng dẫn turtle python

Python được sử dụng trong đồ họa thông qua các gói như Tkinter, Canvas. Và trong bài viết này mình sẽ hướng dẫn các bạn sử dụng thư viện Turtle trên ...

Hướng dẫn array php w3schools

Hướng dẫn dùng setimeout trong PHP

Bạn có bao giờ tự đặt ra câu hỏi Làm thế nào để thiết lập thời gian thực thi của một hàm !?Nếu có, thì bài hướng dẫn này sẽ cung cấp cho bạn đầy ...

Hướng dẫn array php w3schools

Hướng dẫn dùng df join python

Pandas có đầy đủ tính năng, hiệu suất cao trong hoạt động in-memory join rất giống với cơ sở dữ liệu quan hệ như SQL. Các phương pháp này thực hiện tốt ...

Hướng dẫn array php w3schools

Hướng dẫn dùng easter 21 trong PHP

(PHP 4, PHP 5, PHP 7, PHP 8)easter_date — Get Unix timestamp for midnight on Easter of a given yearDescriptioneaster_date(?int $year = null, int $mode = CAL_EASTER_DEFAULT): intWarning This ...

Hướng dẫn array php w3schools

Hướng dẫn dùng txt headers trong PHP

Trong bài này chúng ta tìm hiểu về hàm header, đây là một hàm được dùng khá nhiều trong lập trình web, ví dụ như dùng để chuyển hướng trang, dùng để ...

Hướng dẫn array php w3schools

Hướng dẫn dùng stringreplace trong PHP

Cú phápCú pháp: str_replace($search, $replace, $subject);Bài viết này được đăng tại freetuts.net, không được copy dưới mọi hình thức.Trong đó:$search là kí tự, ...

Hướng dẫn array php w3schools

Hướng dẫn dùng x objects trong PHP

Vietnamese (Tiếng Việt) translation by Andrea Ho (you can also view the original English article) Trong bài viết này, chúng ta sẽ tìm hiểu những điều cơ bản về lập trình ...

Hướng dẫn array php w3schools

Hướng dẫn dùng replace replace trong PHP

Cú phápCú pháp: str_replace($search, $replace, $subject);Bài viết này được đăng tại freetuts.net, không được copy dưới mọi hình thức.Trong đó:$search là kí tự, ...

Hướng dẫn array php w3schools

Hướng dẫn strpos php

(PHP 4, PHP 5, PHP 7, PHP 8)strpos — Find the position of the first occurrence of a substring in a stringDescriptionstrpos(string $haystack, string $needle, int $offset = 0): int|falseParameters ...

Hướng dẫn array php w3schools

Hướng dẫn dùng 256 code trong PHP

Tôi cần một hàm PHP AES256_encode($dataToEcrypt)để mã hóa $datathành AES-256 và một hàm khác AES256_decode($encryptedData)làm ngược lại. Có ai biết những gì mã này nên ...