Creating/modifying Array

Creating/modifying Array

PHP allows you to easily create and modify arrays, which are a data structure that can hold multiple values in a single variable. Here are some quick examples:

To create an array with three values:

php

$myArray = array(“apple”, “banana”, “cherry”);

To add a value to the end of an array:

$myArray[] = “date”;

To modify a value at a specific index:

$myArray[1] = “blueberry”;

To remove a value from an array:

unset($myArray[2]); These are just a few basic examples of what you can do with arrays in PHP. There are many more advanced operations you can perform, such as merging arrays, sorting arrays, and filtering arrays.

Apply for PHP Certification!

https://www.vskills.in/certification/certified-php-developer

Back to Tutorials

Get industry recognized certification – Contact us

Menu