Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

Creating an Array in PHP and How to Use It

Tiempo de lectura: 3 minutos

Reading time: 2 minutes

An array is a collection of values that can be of any type, including other arrays. In PHP, there are several ways to create and work with arrays.

Array Creation

You can create an array in two ways:

  • By assigning a list of values to a variable:
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$names = array('John', 'Paul', 'Ana');
$names = array('John', 'Paul', 'Ana');
$names = array('John', 'Paul', 'Ana');
  • By using the array() function
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$names = array('John', 'Paul', 'Ana');
$names = array('John', 'Paul', 'Ana');
$names = array('John', 'Paul', 'Ana');

Both methods are equivalent, and you can use whichever you prefer.

Accessing Array Elements

Once you have created an array, you can access its elements by using the variable name followed by brackets and the index of the element you want to access. The indices of the elements start at 0, so the first element has index 0, the second has index 1, and so on.

For example:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$names = array('John', 'Paul', 'Ana');
echo $names[0]; // John
echo $names[1]; // Paul
echo $names[2]; // Ana
$names = array('John', 'Paul', 'Ana'); echo $names[0]; // John echo $names[1]; // Paul echo $names[2]; // Ana
$names = array('John', 'Paul', 'Ana');
echo $names[0]; // John
echo $names[1]; // Paul
echo $names[2]; // Ana

Modifying Array Elements

To modify the value of an array element, simply assign a new value through the element’s index:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$names = array('John', 'Paul', 'Ana');
$names[1] = 'Peter'; // the element at index 1 now has the value 'Peter'
$names = array('John', 'Paul', 'Ana'); $names[1] = 'Peter'; // the element at index 1 now has the value 'Peter'
$names = array('John', 'Paul', 'Ana');
$names[1] = 'Peter'; // the element at index 1 now has the value 'Peter'

Adding Elements to the Array

To add an element to the end of an array, you can use the array_push() function:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$names = array('John', 'Paul', 'Ana');
array_push($names, 'Sandra'); // the $names array now has 4 elements: 'John', 'Paul', 'Ana', 'Sandra'
$names = array('John', 'Paul', 'Ana'); array_push($names, 'Sandra'); // the $names array now has 4 elements: 'John', 'Paul', 'Ana', 'Sandra'
$names = array('John', 'Paul', 'Ana');
array_push($names, 'Sandra'); // the $names array now has 4 elements: 'John', 'Paul', 'Ana', 'Sandra'

You can also use assignment syntax to add an element to the end of the array:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$names = array('John', 'Paul', 'Ana');
$names[] = 'Sandra'; // the $names array now has 4 elements: 'John', 'Paul', 'Ana', 'Sandra'
$names = array('John', 'Paul', 'Ana'); $names[] = 'Sandra'; // the $names array now has 4 elements: 'John', 'Paul', 'Ana', 'Sandra'
$names = array('John', 'Paul', 'Ana');
$names[] = 'Sandra'; // the $names array now has 4 elements: 'John', 'Paul', 'Ana', 'Sandra'

Removing Array Elements

To remove an element from the array, you can use the unset() function:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$names = array('John', 'Paul', 'Ana');
unset($names[0]);
// This will return 'Paul', 'Ana'
$names = array('John', 'Paul', 'Ana'); unset($names[0]); // This will return 'Paul', 'Ana'
$names = array('John', 'Paul', 'Ana');
unset($names[0]);
// This will return 'Paul', 'Ana'

Reading time: 2 minutes

An array is a collection of values that can be of any type, including other arrays. In PHP, there are several ways to create and work with arrays.

Array Creation

You can create an array in two ways:

  • By assigning a list of values to a variable:
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$names = array('John', 'Paul', 'Ana');
$names = array('John', 'Paul', 'Ana');
$names = array('John', 'Paul', 'Ana');
  • By using the array() function
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$names = array('John', 'Paul', 'Ana');
$names = array('John', 'Paul', 'Ana');
$names = array('John', 'Paul', 'Ana');

Both methods are equivalent, and you can use whichever you prefer.

Accessing Array Elements

Once you have created an array, you can access its elements by using the variable name followed by brackets and the index of the element you want to access. The indices of the elements start at 0, so the first element has index 0, the second has index 1, and so on.

For example:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$names = array('John', 'Paul', 'Ana');
echo $names[0]; // John
echo $names[1]; // Paul
echo $names[2]; // Ana
$names = array('John', 'Paul', 'Ana'); echo $names[0]; // John echo $names[1]; // Paul echo $names[2]; // Ana
$names = array('John', 'Paul', 'Ana');
echo $names[0]; // John
echo $names[1]; // Paul
echo $names[2]; // Ana

Modifying Array Elements

To modify the value of an array element, simply assign a new value through the element’s index:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$names = array('John', 'Paul', 'Ana');
$names[1] = 'Peter'; // the element at index 1 now has the value 'Peter'
$names = array('John', 'Paul', 'Ana'); $names[1] = 'Peter'; // the element at index 1 now has the value 'Peter'
$names = array('John', 'Paul', 'Ana');
$names[1] = 'Peter'; // the element at index 1 now has the value 'Peter'

Adding Elements to the Array

To add an element to the end of an array, you can use the array_push() function:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$names = array('John', 'Paul', 'Ana');
array_push($names, 'Sandra'); // the $names array now has 4 elements: 'John', 'Paul', 'Ana', 'Sandra'
$names = array('John', 'Paul', 'Ana'); array_push($names, 'Sandra'); // the $names array now has 4 elements: 'John', 'Paul', 'Ana', 'Sandra'
$names = array('John', 'Paul', 'Ana');
array_push($names, 'Sandra'); // the $names array now has 4 elements: 'John', 'Paul', 'Ana', 'Sandra'

You can also use assignment syntax to add an element to the end of the array:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$names = array('John', 'Paul', 'Ana');
$names[] = 'Sandra'; // the $names array now has 4 elements: 'John', 'Paul', 'Ana', 'Sandra'
$names = array('John', 'Paul', 'Ana'); $names[] = 'Sandra'; // the $names array now has 4 elements: 'John', 'Paul', 'Ana', 'Sandra'
$names = array('John', 'Paul', 'Ana');
$names[] = 'Sandra'; // the $names array now has 4 elements: 'John', 'Paul', 'Ana', 'Sandra'

Removing Array Elements

To remove an element from the array, you can use the unset() function:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$names = array('John', 'Paul', 'Ana');
unset($names[0]);
// This will return 'Paul', 'Ana'
$names = array('John', 'Paul', 'Ana'); unset($names[0]); // This will return 'Paul', 'Ana'
$names = array('John', 'Paul', 'Ana');
unset($names[0]);
// This will return 'Paul', 'Ana'

0

Leave a Comment