Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lære Creating Arrays | Arrays
Introduction to PHP
course content

Kursusindhold

Introduction to PHP

Introduction to PHP

1. First Acquaintance
2. Variables and Data Types
3. Conditional Statements
4. Arrays
5. Loops

book
Creating Arrays

Arrays in PHP are a powerful tool for storing and managing data.

An array is a variable that can hold multiple values at once. They can contain data of any type: numbers, strings, objects, other arrays, etc.

Creating Arrays

php

main

copy
1
$numbers = [1, 2, 3, 4, 5];

Explanation of Logic and Syntax:

  1. Here, we declare a variable named $numbers;

  2. The = operator is used to assign a value to the variable;

  3. The array is created using square brackets []. Inside the brackets, we list the array elements separated by commas. In this example, we have created an array with the numbers: 1, 2, 3, 4, 5.

Opgave

Swipe to start coding

Fill in the blanks in the code to create an array with three specific strings 'apple', 'banana', 'cherry' inside square brackets. Elements should be in exactly the same sequence as shown in the example above.

Løsning

Switch to desktopSkift til skrivebord for at øve i den virkelige verdenFortsæt der, hvor du er, med en af nedenstående muligheder
Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 4. Kapitel 1
toggle bottom row

book
Creating Arrays

Arrays in PHP are a powerful tool for storing and managing data.

An array is a variable that can hold multiple values at once. They can contain data of any type: numbers, strings, objects, other arrays, etc.

Creating Arrays

php

main

copy
1
$numbers = [1, 2, 3, 4, 5];

Explanation of Logic and Syntax:

  1. Here, we declare a variable named $numbers;

  2. The = operator is used to assign a value to the variable;

  3. The array is created using square brackets []. Inside the brackets, we list the array elements separated by commas. In this example, we have created an array with the numbers: 1, 2, 3, 4, 5.

Opgave

Swipe to start coding

Fill in the blanks in the code to create an array with three specific strings 'apple', 'banana', 'cherry' inside square brackets. Elements should be in exactly the same sequence as shown in the example above.

Løsning

Switch to desktopSkift til skrivebord for at øve i den virkelige verdenFortsæt der, hvor du er, med en af nedenstående muligheder
Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 4. Kapitel 1
Switch to desktopSkift til skrivebord for at øve i den virkelige verdenFortsæt der, hvor du er, med en af nedenstående muligheder
Vi beklager, at noget gik galt. Hvad skete der?
some-alt